forked from ncla/LoungeDestroyer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
64 lines (64 loc) · 1.73 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
{
"name": "LoungeDestroyer",
"version": "0.7.2.6",
"manifest_version": 2,
"description": "Improves the experience of CS:GO Lounge and DOTA2 Lounge",
"homepage_url": "http://github.com/ncla/LoungeDestroyer",
"icons": {
"16": "icons/icon_normal.png",
"48": "icons/icon_normal.png",
"128": "icons/icon_normal.png"
},
"background": {
"scripts": [
"lib/js/jquery-2.1.1.min.js",
"app/helpers.js",
"app/user.js",
"app/bg/background.js",
"app/bg/bet_bg.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "icons/icon_unknown.png",
"default_title": "LoungeDestroyer settings",
"default_popup": "popup/popup.html"
},
"options_page": "settings/options.html",
"permissions": [
"notifications",
"http://csgolounge.com/*",
"http://steamcommunity.com/*",
"http://dota2lounge.com/*",
"http://api.ncla.me/*",
"storage",
"webRequest",
"webRequestBlocking",
"tabs",
"alarms"
],
"content_scripts": [
{
"matches": [
"http://csgolounge.com/*",
"http://dota2lounge.com/*"
],
"js": [
"lib/js/jquery-2.1.1.min.js",
"app/helpers.js",
"app/user.js",
"app/items.js",
"app/inventory.js",
"app/inject.js",
"app/bet.js"
],
"css": [
"app/css/inject.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"app/prefilter.js"
]
}