-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathmanifest-firefox.json
79 lines (74 loc) · 1.88 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"manifest_version": 2,
"name": "DOMLogger++",
"version": "1.0.7",
"description": "DOMLogger++ allows you to monitor, intercept, and debug JavaScript sinks based on customizable configurations.",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"icons": {
"1399": "icons/icon.png"
},
"browser_action": {
"default_popup": "src/popup/popup.html",
"default_icon": {
"1399": "icons/icon.png"
},
"default_title": "DOMLogger++"
},
"options_ui": {
"open_in_tab": true,
"page": "src/options/options.html"
},
"permissions": [
"storage",
"tabs",
"notifications",
"contextualIdentities",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"background": {
"scripts": [
"src/background/utils.js",
"src/background/handlers.js",
"src/background/init.js",
"src/background/shortcuts.js",
"src/background.js"
],
"persistent": true
},
"devtools_page": "src/devtools/index.html",
"content_scripts": [
{
"run_at": "document_start",
"all_frames": true,
"matches": [
"<all_urls>"
],
"js": [
"src/contentScript.js"
]
}
],
"web_accessible_resources": [
"src/domloggerpp-bundle.js"
],
"commands": {
"open_options": {
"suggested_key": {
"default": "Alt+Shift+O"
},
"description": "Opens the extension options."
},
"open_popup": {
"suggested_key": {
"default": "Alt+Shift+P"
},
"description": "Opens the extension popup."
}
}
}