forked from IsThereAnyDeal/AugmentedSteam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
146 lines (146 loc) · 3.97 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "Augmented Steam",
"short_name": "AS",
"version": "1.4.1",
"description": "Augments your Steam Experience",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgSsjOO0ecqqAz6LCjjIoiRUV3VyW4p7mmTg9bC9uUkj28OgVr5+NRJpyI8gJx7Nd43ZEQ8dfwOl8GLnc3+m90jPSUASlliWxG2LQt81IZhtFurCLUELGIfUSr5vPdthRbwgnPrmRc5nylstBORBwYtT0Dos9pBcikHn0QKo87ggWEAQEBGkLXQ8An01LnQopLX4VbZHTfvoTIjPZOiHUVhKhn4aKM70e/u61mGMSp9WDBYrV0/OFKsVC9jWd9s0DX/uOm3KpFhOj4Bx+ehzEklXNuTTQshIC7NSgh+tAJwSa1GpO9jcCWCnFRqjfxwOrdylqIvCy+87fpU7nJ6sHRQIDAQAB",
"icons": {
"128": "img/es_128.png",
"96": "img/es_96.png",
"48": "img/es_48.png",
"32": "img/es_32.png"
},
"manifest_version": 2,
"browser_specific_settings": {
"gecko": {
"id": "{1be309c5-3e4f-4b99-927d-bb500eb4fa88}"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"storage",
"identity",
"contextMenus",
"*://*.steampowered.com/*",
"*://steamcommunity.com/*",
"*://*.isthereanydeal.com/"
],
"optional_permissions": [
"webRequest",
"webRequestBlocking"
],
"web_accessible_resources": [
"img/*.png",
"img/*.gif",
"img/*.jpg",
"img/*.svg",
"css/*.css",
"options.html",
"changelog_new.html",
"img/*/*.png",
"img/profile_styles/*/header.jpg",
"img/profile_styles/*/showcase.png",
"img/profile_styles/*/style.css",
"img/profile_styles/*/preview.png",
"localization/*/strings.json",
"js/steam/holidayprofile.js"
],
"homepage_url": "https://es.isthereanydeal.com/",
"content_scripts": [
{
"matches": [
"*://*.steampowered.com/*"
],
"exclude_matches": [
"*://store.steampowered.com/dynamicstore/*",
"*://store.steampowered.com/checkout/*",
"*://store.steampowered.com/widget/*",
"*://store.steampowered.com/login/*",
"*://store.steampowered.com/join/*",
"*://store.steampowered.com/api/*",
"*://api.steampowered.com/*",
"*://support.steampowered.com/*",
"*://help.steampowered.com/*",
"*://translation.steampowered.com/*",
"*://partner.steampowered.com/*"
],
"js": [
"js/lib/webextension-polyfill/browser-polyfill.js",
"js/lib/DOMPurify/purify.js",
"js/config.js",
"js/core.js",
"js/language.js",
"js/content/common.js",
"js/content/store.js"
],
"css": [
"css/enhancedsteam.css",
"css/enhancedsteam-chrome.css"
]
},
{
"matches": [
"*://steamcommunity.com/*"
],
"exclude_matches": [
"*://steamcommunity.com/login/*",
"*://steamcommunity.com/openid/*",
"*://steamcommunity.com/chat/*",
"*://steamcommunity.com/tradeoffer/*"
],
"js": [
"js/lib/webextension-polyfill/browser-polyfill.js",
"js/lib/DOMPurify/purify.js",
"js/config.js",
"js/core.js",
"js/language.js",
"js/content/common.js",
"js/content/community.js"
],
"css": [
"css/enhancedsteam.css",
"css/enhancedsteam-chrome.css"
]
},
{
"matches": [
"*://steamcommunity.com/tradeoffer/*"
],
"js": [
"js/lib/webextension-polyfill/browser-polyfill.js",
"js/lib/DOMPurify/purify.js",
"js/config.js",
"js/core.js",
"js/content/common.js",
"js/language.js",
"js/content/tradeoffer.js"
],
"css": [
"css/community/tradeoffer.css"
]
},
{
"matches": [
"*://store.steampowered.com/"
],
"css": [
"css/store/store_front.css"
]
}
],
"background": {
"scripts": [
"js/lib/webextension-polyfill/browser-polyfill.js",
"js/language.js",
"js/lib/DOMPurify/purify.js",
"js/lib/idb/with-async-ittr.js",
"js/config.js",
"js/core.js",
"js/background/background.js"
],
"persistent": false
}
}