-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
34 lines (31 loc) · 850 Bytes
/
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
{
"manifest_version": 2,
"name": "SteGOG",
"version": "0.0.19",
"description": "Display games owned on Steam in GOG",
"icons": {
"48": "icons/stegog-48.png",
"128": "icons/stegog-128.png"
},
"options_ui": {
"page": "src/options.html",
"browser_style": true
},
"permissions": ["*://api.steampowered.com/*", "*://api.isthereanydeal.com/*", "storage"],
"background": {
"scripts": ["lib/bluebird.min.js", "lib/browser-polyfill.min.js", "src/background.js"]
},
"content_scripts": [
{
"matches": ["*://*.gog.com/*"],
"js": ["lib/bluebird.min.js", "lib/browser-polyfill.min.js", "lib/lodash.min.js", "src/stegog.js"],
"css": ["src/stegog.css"]
}
],
"applications": {
"gecko": {
"id": "stegog@ugzuzg.com.amo"
}
},
"web_accessible_resources": ["images/g99.png"]
}