-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
107 lines (107 loc) · 2.5 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
97
98
99
100
101
102
103
104
105
106
107
{
"manifest_version": 3,
"name": "Steamworks extra reports",
"version": "1.10.0",
"permissions": [
"storage",
"offscreen"
],
"host_permissions": [
"https://store.steampowered.com/*",
"https://partner.steampowered.com/*",
"https://partner.steamgames.com/*",
"http://127.0.0.1:3000/*",
"http://localhost:3000/*",
"https://127.0.0.1:3000/*",
"https://localhost:3000/*"
],
"content_scripts": [
{
"matches": [
"http://127.0.0.1:3000/*",
"http://localhost:3000/*",
"https://127.0.0.1:3000/*",
"https://localhost:3000/*"
],
"js": [
"scripts/helpers.js",
"data/defaultsettings.js",
"content/site.js"
]
},
{
"matches": [
"https://partner.steampowered.com/app/details/*"
],
"js": [
"scripts/chart.umd.min.js",
"scripts/helpers.js",
"data/defaultsettings.js",
"content/appdetails_reviews.js",
"content/appdetails_saleschart.js",
"content/appdetails.js"
],
"css": [
"styles/partner_steampowered_shared.css",
"styles/appdetails.css"
]
},
{
"matches": [
"https://partner.steamgames.com/apps/navtrafficstats/*"
],
"js": [
"scripts/chart.umd.min.js",
"scripts/helpers.js",
"data/defaultsettings.js",
"content/apptraffic.js"
],
"css": [
"styles/apptraffic.css"
]
},
{
"matches": [
"https://partner.steampowered.com/app/wishlist/*"
],
"js": [
"scripts/chart.umd.min.js",
"scripts/helpers.js",
"data/defaultsettings.js",
"content/appwishlist.js"
],
"css": [
"styles/partner_steampowered_shared.css",
"styles/appwishlist.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"data/chartcolors.json",
"data/defaulsettings.js",
"background/offscreen/offscreen.html",
"background/offscreen/offscreen.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' http://localhost:3000; object-src 'self'"
},
"options_page": "options/options.html",
"background": {
"service_worker": "background/extensionservice.js"
},
"action": {
"default_popup": "popup/popup.html"
},
"icons": {
"16": "assets/icon-16.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
}
}