Skip to content

Commit 5ac88f3

Browse files
Merge pull request #26 from chrispederick/web-extension
Porting the Firefox version to a WebExtension
2 parents 6711dc8 + 1835f7c commit 5ac88f3

File tree

371 files changed

+3987
-25025
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

371 files changed

+3987
-25025
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
common.prefix=
2-
description=Adds a toolbar button with various web developer tools. The official port of the Web Developer extension for Firefox.
3-
version=0.4.8
1+
version=0.5.1

configuration/chrome/manifest.json

+4-15
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
{
2-
"background": { "page": "background/background.html" },
3-
"browser_action": { "default_icon": { "19": "overlay/images/icon.png", "38": "overlay/images/icon-2x.png" }, "default_popup": "overlay/overlay.html", "default_title": "__MSG_extensionName__" },
4-
"content_scripts": [{ "js": ["content/content.js"], "matches": ["<all_urls>"] }],
5-
"default_locale": "en_US",
6-
"description": "__MSG_extensionDescription__",
7-
"homepage_url": "@url@",
8-
"icons": { "16": "common/images/logos/16.png", "48": "common/images/logos/48.png", "128": "common/images/logos/128.png" },
9-
"manifest_version": 2,
10-
"name": "__MSG_extensionName__",
11-
"options_page": "options/options.html",
12-
"permissions": ["clipboardWrite", "contentSettings", "cookies", "history", "tabs", "<all_urls>"],
13-
"version": "@version@",
14-
"web_accessible_resources": ["*"]
15-
}
1+
{"remove-top": "",
2+
"browser_action": { "default_icon": { "16": "/common/images/logos/16.png", "24": "/common/images/logos/24.png", "32": "/common/images/logos/32.png", "48": "/common/images/logos/48.png", "64": "/common/images/logos/64.png", "128": "/common/images/logos/128.png", "256": "/common/images/logos/256.png", "512": "/common/images/logos/512.png" }, "default_popup": "/overlay/overlay.html", "default_title": "__MSG_extensionName__" },
3+
"permissions": ["browsingData", "clipboardWrite", "contentSettings", "cookies", "history", "storage", "tabs", "<all_urls>"],
4+
"remove-bottom": ""}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
author=Chris Pederick
2-
id=web-developer
2+
description=Adds a toolbar button with various web developer tools.
33
name=Web Developer
4-
namespace=WebDeveloper
5-
preferences=webdeveloper
6-
url=http://chrispederick.com/work/web-developer
4+
url=http://chrispederick.com/work/web-developer/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{"remove-top": "",
2+
"web_accessible_resources": ["*"]
3+
}
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"background": { "page": "/background/background.html" },
3+
"content_scripts": [{ "js": ["/content/content.js"], "matches": ["<all_urls>"] }],
4+
"default_locale": "en_US",
5+
"description": "__MSG_extensionDescription__",
6+
"homepage_url": "@url@",
7+
"icons": { "16": "/common/images/logos/16.png", "24": "/common/images/logos/24.png", "32": "/common/images/logos/32.png", "48": "/common/images/logos/48.png", "64": "/common/images/logos/64.png", "128": "/common/images/logos/128.png", "256": "/common/images/logos/256.png", "512": "/common/images/logos/512.png" },
8+
"manifest_version": 2,
9+
"name": "__MSG_extensionName__",
10+
"options_ui": { "page": "/options/options.html" },
11+
"version": "@version@",
12+
"remove-bottom": ""}

configuration/firefox/chrome.manifest

-17
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
common.prefix=chrome://web-developer/content
2-
description=Adds a menu and a toolbar with various web developer tools.
3-
version=1.2.13
1+
version=2.0.1

configuration/firefox/install.rdf

-65
This file was deleted.

configuration/firefox/manifest.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{"remove-top": "",
2+
"browser_action": { "browser_style": false, "default_icon": { "16": "/common/images/logos/16.png", "24": "/common/images/logos/24.png", "32": "/common/images/logos/32.png", "48": "/common/images/logos/48.png", "64": "/common/images/logos/64.png", "128": "/common/images/logos/128.png", "256": "/common/images/logos/256.png", "512": "/common/images/logos/512.png" }, "default_popup": "/overlay/overlay.html", "default_title": "__MSG_extensionName__" },
3+
"permissions": ["clipboardWrite", "cookies", "history", "storage", "tabs", "<all_urls>"],
4+
"remove-bottom": ""}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
common.prefix=
2-
description=Adds a toolbar button with various web developer tools. The official port of the Web Developer extension for Firefox.
3-
version=0.2.2
1+
version=0.3

configuration/opera/manifest.json

+4-15
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
{
2-
"background": { "page": "background/background.html" },
3-
"browser_action": { "default_icon": { "19": "overlay/images/icon.png", "38": "overlay/images/icon-2x.png" }, "default_popup": "overlay/overlay.html", "default_title": "__MSG_extensionName__" },
4-
"content_scripts": [{ "js": ["content/content.js"], "matches": ["<all_urls>"] }],
5-
"default_locale": "en_US",
6-
"description": "__MSG_extensionDescription__",
7-
"homepage_url": "@url@",
8-
"icons": { "16": "common/images/logos/16.png", "48": "common/images/logos/48.png", "128": "common/images/logos/128.png" },
9-
"manifest_version": 2,
10-
"name": "__MSG_extensionName__",
11-
"options_page": "options/options.html",
12-
"permissions": ["clipboardWrite", "cookies", "history", "tabs", "<all_urls>"],
13-
"version": "@version@",
14-
"web_accessible_resources": ["*"]
15-
}
1+
{"remove-top": "",
2+
"browser_action": { "default_icon": { "16": "/common/images/logos/monochrome/16.png", "24": "/common/images/logos/monochrome/24.png", "32": "/common/images/logos/monochrome/32.png", "48": "/common/images/logos/monochrome/48.png", "64": "/common/images/logos/monochrome/64.png", "128": "/common/images/logos/monochrome/128.png", "256": "/common/images/logos/monochrome/256.png", "512": "/common/images/logos/monochrome/512.png" }, "default_popup": "/overlay/overlay.html", "default_title": "__MSG_extensionName__" },
3+
"permissions": ["browsingData", "clipboardWrite", "cookies", "history", "storage", "tabs", "<all_urls>"],
4+
"remove-bottom": ""}

0 commit comments

Comments
 (0)