-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
56 lines (56 loc) Β· 1.45 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
54
55
56
{
"browser_action": {
"default_icon": "icons/icon16.png",
"default_popup": "/popup.html"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"description": "Customizable Hacker Themed New Tab For Chrome",
"icons": {
"16": "icons/icon16.png",
"19": "icons/icon19.png",
"48": "icons/icon48.png",
"96": "icons/icon96-128.png",
"128": "icons/icon128.png"
},
"manifest_version": 2,
"name": "Hacker Tab",
"short_name":"Hacker Tab",
"web_accessible_resources": [
"css/*.ttf",
"js/custom.min.js",
"js/script.min.js",
"js/jscolor.min.js",
"js/fast.min.js",
"js/def-settings-reloader.js",
"js/platform.min.js",
"js/sortable.min.js",
"js/perfect-scrollbar.min.js",
"js/init.js"
],
"update_url": "https://clients2.google.com/service/update2/crx",
"background": {
"scripts": [
"js/jquery.js",
"js/init.js",
"js/script.min.js",
"js/jscolor.min.js",
"js/custom.min.js",
"js/fast.min.js",
"js/def-settings-reloader.js",
"js/platform.min.js",
"js/sortable.min.js",
"js/perfect-scrollbar.min.js",
"autocomplete/index.js",
"js/canvas/matrix.js",
"js/canvas/stars.js",
"js/canvas/trails.js",
"js/canvas/nodes.js",
"js/canvas/nodes2x.js",
"js/canvas/circuits.js"
]
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"version": "1.0"
}