-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1.47 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
{
"name": "Enhanced Steam",
"description": "Modernizes the Steam UI",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"tabs"
],
"host_permissions": [
"*://*.steampowered.com/*",
"*://steamcommunity.com/*"
],
"content_scripts": [
{
"matches": ["*://*.steampowered.com/*", "*://steamcommunity.com/*"],
"css": [ "./css/global.css" ],
"js": [ "./js/global.js" ]
},
{
"matches": ["*://help.steampowered.com/*"],
"css": [ "./css/help.css" ]
},
{
"matches": ["*://*.steampowered.com/agecheck/*"],
"css": [ "./css/store/agecheck.css" ],
"js": ["./js/store/agecheck.js"]
},
{
"matches": ["*://steamcommunity.com/market/*"],
"css": [ "./css/community/market.css" ]
},
{
"matches": ["*://*.steampowered.com/app/*"],
"css": [ "./css/store/app.css" ],
"js": ["./js/store/app.js"]
},
{
"matches": ["*://*.steampowered.com/cart/*"],
"css": [ "./css/store/cart.css" ]
},
{
"matches": ["*://steamcommunity.com/profiles/*/games/*", "*://steamcommunity.com/id/*/games/*"],
"css": ["./css/community/profile/games.css"],
"js": ["./js/community/profile/games.js"]
},
{
"matches": ["*://steamcommunity.com/stats/*/achievements*", "*://steamcommunity.com/profiles/*/stats/*/achievements*"],
"css": ["./css/community/profile/achievements.css"],
"js": ["./js/community/profile/achievements.js"]
}
]
}