-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
54 lines (53 loc) · 1.23 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.3.3",
"author": "shinrax2",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"content_scripts": [
{
"exclude_matches": [
"*://steamcommunity.com/login*",
"*://steamcommunity.com/openid/login*",
"*://help.steampowered.com/*/wizard/Login*",
"*://*.steampowered.com/login*",
"*://store.steampowered.com/about*"
],
"matches": [
"*://steamcommunity.com/*",
"*://*.steampowered.com/*"
],
"js": [
"openinsteam.js"
]
},
{
"exclude_matches": [
"*://steamcommunity.com/?subsection=broadcasts*",
"*://steamcommunity.com/broadcast/*",
"*://steamcommunity.com/discussions/*",
"*://steamcommunity.com/groups/*",
"*://steamcommunity.com/app/*/discussions/*",
"*://steamcommunity.com/app/*/broadcasts/*",
"*://steamcommunity.com/market/*",
"*://steamcommunity.com/workshop/*"
],
"matches": [
"*://steamcommunity.com/*"
],
"js": [
"community.js"
]
}
],
"icons" : {
"48" : "icons/48x48.png",
"96" : "icons/96x96.png"
},
"applications": {
"gecko": {
"id": "openinsteampublic@shinrax2"
}
}
}