-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmanifest.json
96 lines (96 loc) · 2.94 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"background": {
"service_worker": "js/backgroundpage.js"
},
"content_scripts": [
{
"run_at": "document_start",
"css": ["css/general.css"],
"js": [
"js/autoentry.js",
"js/misc.js",
"js/settings.js"
],
"matches": [
"*://www.steamgifts.com/",
"*://www.steamgifts.com/giveaways/search?*",
"*://www.steamgifts.com/game/*",
"*://steamgifts.com/",
"*://steamgifts.com/giveaways/search?*",
"*://steamgifts.com/game/*"
]
},
{
"js": ["js/autojoinSteamQueue.js"],
"matches": ["*://store.steampowered.com/*"]
},
{
"css": ["css/general.css"],
"js": ["js/misc.js"],
"matches": [
"*://steamgifts.com/giveaways/created/*",
"*://www.steamgifts.com/giveaways/created/*",
"*://steamgifts.com/giveaways/entered/*",
"*://www.steamgifts.com/giveaways/entered/*",
"*://steamgifts.com/giveaways/won/*",
"*://www.steamgifts.com/giveaways/won/*",
"*://steamgifts.com/trades/*",
"*://www.steamgifts.com/trades/*",
"*://steamgifts.com/sales/*",
"*://www.steamgifts.com/sales/*",
"*://steamgifts.com/discussions/*",
"*://www.steamgifts.com/discussions/*",
"*://steamgifts.com/discussion/*",
"*://www.steamgifts.com/discussion/*",
"*://steamgifts.com/about/*",
"*://www.steamgifts.com/about/*",
"*://steamgifts.com/support/*",
"*://www.steamgifts.com/support/*",
"*://steamgifts.com/messages/*",
"*://www.steamgifts.com/messages/*",
"*://steamgifts.com/account/*",
"*://www.steamgifts.com/account/*",
"*://steamgifts.com/trade/*",
"*://www.steamgifts.com/trade/*",
"*://steamgifts.com/users/*",
"*://www.steamgifts.com/users/*",
"*://steamgifts.com/user/*",
"*://www.steamgifts.com/user/*",
"*://steamgifts.com/giveaway/*",
"*://www.steamgifts.com/giveaway/*",
"*://steamgifts.com/legal/*",
"*://www.steamgifts.com/legal/*"
]
}
],
"icons": {
"128": "media/autologo.png",
"16": "media/autologo16.png",
"48": "media/autologo48.png"
},
"manifest_version": 3,
"name": "AutoJoin for SteamGifts",
"short_name": "AutoJoin",
"description": "Automatically enters giveaways from Steamgifts.com and site enhancements",
"permissions": [
"alarms",
"notifications",
"storage",
"offscreen"
],
"host_permissions": [
"*://www.steamgifts.com/*",
"*://store.steampowered.com/*"
],
"optional_host_permissions": ["*://steamcommunity.com/profiles/*"],
"version": "1.10.8",
"web_accessible_resources": [{
"use_dynamic_url": true,
"resources": ["html/settings.html", "css/night.css", "media/audio.mp3"],
"matches": ["*://steamgifts.com/*", "*://www.steamgifts.com/*"],
"extension_ids": []
}],
"options_ui": {
"page": "html/settings.html"
}
}