summaryrefslogtreecommitdiffstats
path: root/browser/extensions/report-site-issue/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'browser/extensions/report-site-issue/manifest.json')
-rw-r--r--browser/extensions/report-site-issue/manifest.json78
1 files changed, 78 insertions, 0 deletions
diff --git a/browser/extensions/report-site-issue/manifest.json b/browser/extensions/report-site-issue/manifest.json
new file mode 100644
index 0000000000..d0afa9e795
--- /dev/null
+++ b/browser/extensions/report-site-issue/manifest.json
@@ -0,0 +1,78 @@
+{
+ "manifest_version": 2,
+ "name": "WebCompat Reporter",
+ "description": "Report site compatibility issues on webcompat.com",
+ "author": "Thomas Wisniewski <twisniewski@mozilla.com>",
+ "version": "1.4.0",
+ "homepage_url": "https://github.com/mozilla/webcompat-reporter",
+ "applications": {
+ "gecko": {
+ "id": "webcompat-reporter@mozilla.org"
+ }
+ },
+ "experiment_apis": {
+ "aboutConfigPrefs": {
+ "schema": "experimentalAPIs/aboutConfigPrefs.json",
+ "parent": {
+ "scopes": ["addon_parent"],
+ "script": "experimentalAPIs/aboutConfigPrefs.js",
+ "paths": [["aboutConfigPrefs"]]
+ }
+ },
+ "browserInfo": {
+ "schema": "experimentalAPIs/browserInfo.json",
+ "parent": {
+ "scopes": ["addon_parent"],
+ "script": "experimentalAPIs/browserInfo.js",
+ "paths": [["browserInfo"]]
+ }
+ },
+ "l10n": {
+ "schema": "experimentalAPIs/l10n.json",
+ "parent": {
+ "scopes": ["addon_parent"],
+ "script": "experimentalAPIs/l10n.js",
+ "paths": [["l10n"]]
+ }
+ },
+ "pageActionExtras": {
+ "schema": "experimentalAPIs/pageActionExtras.json",
+ "parent": {
+ "scopes": ["addon_parent"],
+ "script": "experimentalAPIs/pageActionExtras.js",
+ "paths": [["pageActionExtras"]]
+ }
+ },
+ "tabExtras": {
+ "schema": "experimentalAPIs/tabExtras.json",
+ "parent": {
+ "scopes": ["addon_parent"],
+ "script": "experimentalAPIs/tabExtras.js",
+ "paths": [["tabExtras"]]
+ }
+ }
+ },
+ "icons": {
+ "16": "icons/lightbulb.svg",
+ "32": "icons/lightbulb.svg",
+ "48": "icons/lightbulb.svg",
+ "96": "icons/lightbulb.svg",
+ "128": "icons/lightbulb.svg"
+ },
+ "permissions": [
+ "tabs",
+ "<all_urls>"
+ ],
+ "background": {
+ "scripts": [
+ "background.js"
+ ]
+ },
+ "page_action": {
+ "browser_style": true,
+ "default_icon": "icons/lightbulb.svg",
+ "default_title": "Report Site Issue…",
+ "pinned": false,
+ "show_matches": ["http://*/*", "https://*/*"]
+ }
+}