-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
53 lines (47 loc) · 1.23 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
{
"update_url":"http://clients2.google.com/service/update2/crx",
"name": "IGN++",
"version": "2.2.2.50001",
"description": "Adds many helpful features to boards.ign.com. Quick post, ignore users, autorefresh, WYSIWYG editor, etc.",
"minimum_chrome_version": "12.0.742.100",
"icons": {
"16": "skin/default/icons/icon16.png",
"32": "skin/default/icons/icon32.png",
"48": "skin/default/icons/icon48.png",
"64": "skin/default/icons/icon64.png",
"128": "skin/default/icons/icon128.png"
},
"permissions": [
"tabs",
"http://boards.ign.com/*",
"http://forums.ign.com/*",
"http://betaboards.ign.com/*",
"http://derekdev.com/mozilla/ignbq/*",
"unlimitedStorage"
],
"options_page": "content/options/gchromeoptions.html",
"background_page": "content/background.html",
"content_scripts": [
{
"matches": [
"http://boards.ign.com/*",
"http://forums.ign.com/*",
"http://betaboards.ign.com/*"
],
"css": ["skin/default/main.css"],
"js": [
"content/gchromeapi.js",
"content/gchromeinitialize.js"
]
},
{
"matches": [
"http://boards.ign.com/*",
"http://forums.ign.com/*",
"http://betaboards.ign.com/*"
],
"js": ["content/gchromecolors.js"],
"run_at": "document_start"
}
]
}