-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (46 loc) · 1.43 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
{
"manifest_version": 2,
"name": "Steam Anti-Scam Project",
"description": "The Project should help the User to get not scammed.",
"version": "0.5.0.0",
"browser_action": {
"default_icon": "image/steam.png",
"default_popup": "html/settings.html"
},
"icons": {
"128": "image/icon128.png",
"16": "image/icon16.png",
"19": "image/icon19.png",
"48": "image/icon48.png"
},
"content_scripts": [
{
"matches": ["http://steamcommunity.com/profiles/*","http://www.steamcommunity.com/profiles/*",
"http://www.steamcommunity.com/id/*","http://steamcommunity.com/id/*",
"https://steamcommunity.com/profiles/*","https://www.steamcommunity.com/profiles/*",
"https://www.steamcommunity.com/id/*","https://steamcommunity.com/id/*"],
"css": ["css/profov.css"],
"js": ["js/jquery-1.11.3.min.js", "js/profov.js"]
},
{
"matches": ["*://*.csgolounge.com/trade?t=*"],
"css": ["css/loungec.css"],
"js": [ "js/jquery-1.11.3.min.js", "js/loungec.js"]
}
],
"background": {
"scripts": ["js/jquery-1.11.3.min.js" , "js/background.js"]
},
"permissions": [
"activeTab",
"*://*.steam-antiscam.eu/*",
"*://*.csgolounge.com/*",
"*://*.dota2lounge.com/*",
"*://steamcommunity.com/*",
"*://steamrep.com/*",
"storage",
"unlimitedStorage",
"background",
"alarms"
]
}