1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
"manifest_version": 2,
"name": "WebCompat Reporter",
"description": "Report site compatibility issues on webcompat.com",
"author": "Thomas Wisniewski <twisniewski@mozilla.com>",
"version": "2.1.0",
"homepage_url": "https://github.com/mozilla/webcompat-reporter",
"browser_specific_settings": {
"gecko": {
"id": "webcompat-reporter@mozilla.org"
}
},
"experiment_apis": {
"helpMenu": {
"schema": "experimentalAPIs/helpMenu.json",
"parent": {
"scopes": ["addon_parent"],
"script": "experimentalAPIs/helpMenu.js",
"paths": [["helpMenu"]]
}
},
"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": {
"persistent": false,
"type": "module",
"scripts": ["background.js"]
}
}
|