-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (40 loc) · 994 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
35
36
37
38
39
40
41
42
43
{
"manifest_version": 2,
"version": "0.1",
"name": "IsThereAnyDeal's Steam Sync",
"short_name": "Steam Sync",
"author": "Tomáš Fedor",
"description": "",
"homepage_url": "https://isthereanydeal.com/",
"incognito": "not_allowed",
"background": {
"scripts": [
"server/api.js",
"server/plains.js",
"server/waitlist.js",
"server/collection.js",
"server/server.js"
]
},
"content_scripts": [
{
"exclude_matches": ["*://store.steampowered.com/cart/*", "*://store.steampowered.com/account/*"],
"matches": ["*://store.steampowered.com/*"],
"js": [
"client/api.js",
"client/uri.js",
"client/user.js",
"client/steam.js"
],
"css": ["steam.css"]
}
],
"permissions": [
"*://dev.isthereanydeal.com/*",
"*://isthereanydeal.com/*",
"*://api.isthereanydeal.com/*",
"*://store.steampowered.com/dynamicstore/userdata/*",
"storage",
"webRequest"
]
}