forked from jshackles/Enhanced_Steam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
107 lines (107 loc) · 2.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
{
"name": "Enhanced Steam",
"version": "9.9",
"description": "Enhances the Steam Experience",
"icons": {
"128": "img/enhancedsteam.png"
},
"manifest_version": 2,
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"storage",
"http://*.steampowered.com/"
],
"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"
],
"homepage_url": "http://www.EnhancedSteam.com/",
"content_scripts": [
{
"matches": [
"http://*.steampowered.com/*",
"https://*.steampowered.com/*",
"http://steamcommunity.com/*",
"https://steamcommunity.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/*",
"*://steamcommunity.com/login/*"
],
"js": [
"js/jQuery.min.js",
"enhancedsteam.js"
],
"css": [
"css/enhancedsteam.css"
]
},
{
"matches": [
"http://*.steampowered.com/app/*",
"http://*.steampowered.com/sub/*",
"http://*.steampowered.com/sale/*",
"http://*.steampowered.com/"
],
"css": [
"css/es_flags.css"
]
},
{
"matches": [
"https://steamcommunity.com/tradeoffer/*"
],
"js": [
"js/steamcommunity.com/tradeoffer.js"
],
"css": [
"css/steamcommunity.com/tradeoffer.css"
]
},
{
"matches": [
"*://steamcommunity.com/id/*",
"*://steamcommunity.com/profiles/*"
],
"css": [
"css/es_sites_links.css"
]
},
{
"matches": [
"*://store.steampowered.com/"
],
"css": [
"css/store.steampowered.com/store_front.css"
]
}
,
{
"matches": [
"*://steamcommunity.com/*/wishlist*"
],
"css": [
"css/steamcommunity.com/steam_store_hover.css"
]
}
]
}