forked from jayleenli/Steam-Activity-Filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (30 loc) · 1.03 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
{
"manifest_version": 2,
"name": "Steam Activity Filter",
"description": "Steam Activity Filter lets you filter out unwanted screenshots and status updates from your Steam Friend Activity Feed.",
"version": "1.0",
"icons": { "16": "saflogo.png",
"48": "saflogo.png",
"128": "saflogo.png" },
"browser_action": {
"default_icon": "saflogo.png"
},
"permissions": [
"http://steamcommunity.com/*"
],
"content_scripts": [
{
"matches": ["http://steamcommunity.com/id/*","http://steamcommunity.com/profiles/*"],
"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": ["jQuery.min.js","steamfilter.js"]
}
]
}