forked from computestdev/Openrunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
51 lines (51 loc) · 1.15 KB
/
manifest.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
46
47
48
49
50
51
{
"manifest_version": 2,
"name": "Openrunner",
"version": "2.5.0",
"description": "TODO",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "54.0"
}
},
"permissions": [
"<all_urls>",
"cookies",
"downloads",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"icons": {
"48": "icons/openrunner-48.png",
"96": "icons/openrunner-96.png"
},
"browser_action": {
"default_icon": {
"16": "icons/openrunner-16.png",
"32": "icons/openrunner-32.png",
"64": "icons/openrunner-64.png"
},
"browser_style": true,
"default_title": "Computest Openrunner"
},
"background": {
"scripts": [
"build/background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"all_frames": false,
"js": [
"build/tabs-content.js"
],
"run_at": "document_start"
}
]
}