-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
48 lines (48 loc) · 1.05 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
{
"name": "Cbox Console",
"version": "0.1",
"manifest_version": 2,
"description": "Chrome Game Console",
"icons": {
"16": "images/chrome-grey-16.png",
"48": "images/chrome-grey-48.png",
"128": "images/chrome-grey-128.png"
},
"default_locale": "en",
"app" : {
"launch": {
"local_path": "main.html"
},
"icons": {
"128": "chrome-grey-128.png"
}
},
"permissions": [
"tabs", "http://*/*","https://*/*"
],
"update_url" : "http://localhost:8888/",
"background": {
"scripts": ["static/background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"run_at": "document_start",
"js": ["static/jquery.js",
"static/libs/collie.min.js",
"static/libs/cocos2d.js",
"static/libs/ranking.js"
],
"all_frames":true
},
{
"matches": ["<all_urls>"],
"run_at": "document_end",
"js": [
"static/pubsub.js",
"static/cbox.controller.js"
],
"all_frames":true
}
]
}