-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
53 lines (53 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
52
53
{
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDescription__",
"version": "1.3.4",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"32": "images/icon-32.png",
"96": "images/icon-96.png",
"192": "images/icon-192.png"
},
"background": {
"scripts": [
"scripts/background.js"
]
},
"content_scripts": [
{
"js": [
"scripts/contentScript.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}
],
"devtools_page": "pages/dev_tools.html",
"browser_action": {
"default_icon": {
"32": "images/icon-32.png",
"96": "images/icon-96.png",
"192": "images/icon-192.png"
},
"default_title": "__MSG_browserActionTitle__",
"default_popup": "pages/settings.html"
},
"options_ui": {
"page": "pages/settings.html"
},
"permissions": [
"<all_urls>",
"webNavigation",
"storage"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"__firefox__applications": {
"gecko": {
"id": "[email protected]"
}
}
}