-
Notifications
You must be signed in to change notification settings - Fork 21
/
manifest.json
87 lines (87 loc) · 3.01 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
{
"name": "Ban Checker for Steam",
"description": "Automatically check bans of people you recently played with, your friends, and group members.",
"version": "1.5.1",
"icons": {
"16": "icons/ow16.png",
"48": "icons/ow48.png",
"128": "icons/ow128.png"
},
"permissions": [
"storage",
"alarms",
"contextMenus"
],
"host_permissions": [
"*://steamcommunity.com/*",
"https://api.steampowered.com/*"
],
"optional_permissions": ["notifications"],
"options_ui": {
"page": "options.html"
},
"web_accessible_resources": [{
"resources": ["options.html", "icons/*.svg"],
"matches": ["<all_urls>"]
}],
"content_scripts": [
{
"js": ["checkbans.js", "options.js"],
"css": ["display.css"],
"run_at": "document_end",
"matches": [
"*://steamcommunity.com/id/*/friends*",
"*://steamcommunity.com/profiles/*/friends*",
"*://steamcommunity.com/id/*/following*",
"*://steamcommunity.com/profiles/*/following*",
"*://steamcommunity.com/id/*/groups*",
"*://steamcommunity.com/profiles/*/groups*"
]
},
{
"js": ["checkbans-old.js"],
"run_at": "document_end",
"matches": ["*://steamcommunity.com/groups/*/members*"]
},
{
"js": ["replaceurl.js"],
"run_at": "document_end",
"matches": ["*://steamcommunity.com/groups/*"]
},
{
"js": ["options.js", "gcpd730.js"],
"css": ["display.css"],
"run_at": "document_end",
"matches": [
"*://steamcommunity.com/id/*/gcpd/730*tab=matchhistorycompetitive",
"*://steamcommunity.com/profiles/*/gcpd/730*tab=matchhistorycompetitive",
"*://steamcommunity.com/id/*/gcpd/730*tab=matchhistorypremier",
"*://steamcommunity.com/profiles/*/gcpd/730*tab=matchhistorypremier",
"*://steamcommunity.com/id/*/gcpd/730*tab=matchhistorycompetitivepermap",
"*://steamcommunity.com/profiles/*/gcpd/730*tab=matchhistorycompetitivepermap",
"*://steamcommunity.com/id/*/gcpd/730*tab=matchhistorywingman",
"*://steamcommunity.com/profiles/*/gcpd/730*tab=matchhistorywingman",
"*://steamcommunity.com/id/*/gcpd/730*tab=matchhistoryscrimmage",
"*://steamcommunity.com/profiles/*/gcpd/730*tab=matchhistoryscrimmage",
"*://steamcommunity.com/id/*/gcpd/730*tab=matchhistoryophydra",
"*://steamcommunity.com/profiles/*/gcpd/730*tab=matchhistoryophydra",
"*://steamcommunity.com/id/*/gcpd/730*tab=playerreports",
"*://steamcommunity.com/profiles/*/gcpd/730*tab=playerreports",
"*://steamcommunity.com/id/*/gcpd/730*tab=playercommends",
"*://steamcommunity.com/profiles/*/gcpd/730*tab=playercommends"
]
},
{
"js": ["csrating.js"],
"run_at": "document_end",
"matches": [
"*://steamcommunity.com/id/*/gcpd/730?tab=majors",
"*://steamcommunity.com/profiles/*/gcpd/730?tab=majors"
]
}
],
"background": {
"service_worker": "service_worker.js"
},
"manifest_version": 3
}