-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
66 lines (66 loc) · 2.35 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
57
58
59
60
61
62
63
64
65
66
{
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"short_name": "eSG",
"default_locale": "en",
"author": "MeDAN",
"manifest_version": 2,
"version": "2.7.0",
"minimum_chrome_version": "32.0",
"permissions": [
"tabs", "storage", "https://www.steamgifts.com/*", "http://cdn.steampowered.com/*",
"http://cdn.akamai.steamstatic.com/*", "https://steamcdn-a.akamaihd.net/*"
],
"homepage_url": "https://github.com/micso/easy-steamgifts",
"options_page": "options.html",
"background": {
"scripts": ["background.js"]
},
"icons": {
"16": "img/icon-16.png",
"48": "img/icon-48.png",
"128": "img/icon-128.png"
},
"web_accessible_resources": [
"img/*"
],
"browser_action": {
"default_icon": "img/icon-19.png"
},
"content_scripts": [
{
"matches": ["*://www.steamgifts.com/giveaway/*"],
"css": ["css/giveaway_page.css"],
"js": ["lib/jquery.min.js"],
"run_at": "document_start"
},
{
"matches": ["*://www.steamgifts.com/giveaway/*"],
"js": ["lib/jquery-textrange.js", "sg_lib.js", "visual.js", "giveaway_page.js"],
"run_at": "document_end"
},
{
"matches": ["*://www.steamgifts.com/", "*://www.steamgifts.com/giveaways/search*"],
"css": ["css/main_page.css"],
"js": ["lib/jquery.min.js", "sg_lib.js", "visual.js", "main_page.js"],
"run_at": "document_end"
},
{
"matches": ["*://steamcommunity.com/id/*/wishlist*", "*://steamcommunity.com/profiles/*/wishlist*"],
"js": ["lib/jquery.min.js", "sg_lib.js", "wishlist_page.js"],
"run_at": "document_end"
},
{
"matches": ["*://www.steamgifts.com/user/*"],
"css": ["css/profile_page.css"],
"js": ["lib/jquery.min.js", "sg_lib.js", "visual.js", "profile_page.js"],
"run_at": "document_end"
},
{
"matches": ["*://www.steamgifts.com/discussion/*"],
"css": ["css/forum_page.css"],
"js": ["lib/jquery.min.js", "lib/jquery-textrange.js", "visual.js", "forum_page.js"],
"run_at": "document_end"
}
]
}