-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
48 lines (48 loc) · 1015 Bytes
/
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
{
"name": "__MSG_extName__",
"manifest_version": 2,
"version": "2.0.3",
"description": "__MSG_extDescription__",
"default_locale": "en",
"icons": {
"128": "img/icon128.png",
"48": "img/icon48.png",
"16": "img/icon16.png"
},
"browser_action": {
"default_icon": "img/icon16.png",
"default_popup": "popup.html"
},
"content_scripts": [{
"matches": ["<all_urls>"],
"css": ["css/font-awesome.min.css",
"library/AWN/style.css"
],
"js": [
"library/TimeMe/timeme.min.js",
"library/AWN/index.var.js",
"content.js"
]
}],
"options_page": "options.html",
"background": {
"scripts": [
"library/TimeMe/timeme.min.js",
"library/Compression/lz-string.min.js",
"background.js"
],
"persistent": true
},
"web_accessible_resources": [
"fonts/*",
"sounds/*",
"library/AWN/style.css",
"todolist/index.html",
"img/icon128.png"
],
"content_security_policy": "script-src 'self' https://*.sharethis.com; object-src 'self'",
"permissions": [
"storage",
"tabs"
]
}