-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
106 lines (105 loc) · 3.21 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
{
"manifest_version": 2,
"name": "Steam Inventory Expert",
"short_name": "SIH",
"description": "Open source version of Steam Inventory Helper",
"default_locale": "en",
"version": "1.0.0.0",
"background": {
"scripts": [ "js/jquery-1.10.2.min.js", "js/offernof.js" ],
"persistent": true
},
"content_scripts": [
{
"js": [ "js/jquery-1.10.2.min.js", "js/json2.js", "js/tradeoffer.js", "js/common/settings.js" ],
"matches": [ "*://steamcommunity.com/tradeoffer/*", "*://steamcommunity.com/trade/*" ],
"run_at": "document_end"
},
{
"js": [ "js/jquery-1.10.2.min.js", "js/json2.js", "js/gifts.js" ],
"matches": [ "*://*.steampowered.com/checkout/sendgift/*" ],
"run_at": "document_end"
},
{
"js": [ "js/jquery-1.10.2.min.js", "js/inventprice.js", "js/common/settings.js" ],
"matches": [
"*://steamcommunity.com/id/*/inventory",
"*://steamcommunity.com/id/*/inventory/*",
"*://steamcommunity.com/profiles/*/inventory",
"*://steamcommunity.com/profiles/*/inventory/*"
],
"run_at": "document_end"
},
{
"js": [ "js/profile.js" ],
"matches": [ "*://steamcommunity.com/id/*", "*://steamcommunity.com/profiles/*" ],
"run_at": "document_end"
},
{
"js": [ "js/tradeofferrev.js" ],
"matches": [
"*://steamcommunity.com/id/*/tradeoffers/*",
"*://steamcommunity.com/profiles/*/tradeoffers/*",
"*://steamcommunity.com/id/*/tradeoffers",
"*://steamcommunity.com/profiles/*/tradeoffers"
],
"run_at": "document_end"
},
{
"js": [ "js/jquery-1.10.2.min.js", "js/listing.js" ],
"matches": [ "*://steamcommunity.com/market/listings/*" ],
"run_at": "document_end"
},
{
"js": [ "js/jquery-1.10.2.min.js", "js/market.js" ],
"matches": [ "*://steamcommunity.com/market/", "*://steamcommunity.com/market" ],
"run_at": "document_end"
},
{
"js": [ "js/badge.js" ],
"matches": [ "*://steamcommunity.com/id/*/gamecards/*", "*://steamcommunity.com/profiles/*/gamecards/*" ],
"run_at": "document_end"
},
{
"js": [ "js/jquery-1.10.2.min.js", "js/invites.js" ],
"matches": [ "*://steamcommunity.com/id/*/invites/*", "*://steamcommunity.com/profiles/*/invites/*" ],
"run_at": "document_end"
}
],
"icons": {
"16": "assets/icon16.png",
"19": "assets/icon19.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"browser_action": {
"default_title": "Steam Inventory Expert",
"default_icon": "assets/icon19.png",
"default_popup": "html/popup.html"
},
"options_page": "html/popup.html",
"permissions": [
"notifications",
"alarms",
"storage",
"background",
"webRequest",
"webRequestBlocking",
"*://*.steamcommunity.com/*",
"*://*.steampowered.com/*",
"*://*.steamstatic.com/*",
"*://*.steamrep.com/*"
],
"externally_connectable":{
"matches":["*://steamcommunity.com/*"]
},
"web_accessible_resources": [
"css/*.css",
"js/*.js",
"js/*.min.js.map",
"js/jquery-1.10.2.min.map",
"assets/*",
"js/lang/*"
],
"homepage_url": "https://github.com/ncla/SteamInventoryExpert"
}