generated from jeffgca/browser-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest-firefox.json
45 lines (45 loc) · 972 Bytes
/
manifest-firefox.json
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
45
{
"description": "Developer tools for debugging ODD applications.",
"manifest_version": 2,
"name": "ODD Devtools",
"version": "0.2.0",
"developer": {
"name": "Fission",
"url": "https://github.com/oddsdk/odd-devtools"
},
"icons": {
"16": "odd16.png",
"32": "odd32.png",
"48": "odd48.png",
"128": "odd128.png"
},
"background": {
"scripts": [ "src/background/background.js" ]
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://localhost/*",
"http://127.0.0.1/*"
],
"js": ["src/content/page-load.js"]
}
],
"devtools_page": "src/devtools/devtools.html",
"permissions": [
"scripting",
"https://*/*",
"http://localhost/*",
"http://127.0.0.1/*"
],
"web_accessible_resources": [
"src/content/content.js"
],
"browser_specific_settings": {
"gecko": {
"strict_min_version": "109.0",
"id": "odd-devtools@fission"
}
}
}