This repository has been archived by the owner on Jan 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathmanifest.json
87 lines (87 loc) · 2.56 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": "LoungeDestroyer",
"version": "0.9.5.4",
"manifest_version": 2,
"description": "Improves the experience of CS:GO Lounge and DOTA2 Lounge",
"homepage_url": "https://github.com/ncla/LoungeDestroyer",
"icons": {
"16": "icons/16x16.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png"
},
"background": {
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"lib/js/css-lib.js",
"app/helpers.js",
"app/user.js",
"app/match.js",
"app/bg/background.js",
"app/bg/bet.js",
"app/bg/themes.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "icons/32x32.png",
"default_title": "LoungeDestroyer"
},
"options_page": "settings/index.html",
"permissions": [
"notifications",
"*://csgolounge.com/*",
"*://steamcommunity.com/*",
"*://dota2lounge.com/*",
"*://api.ncla.me/*",
"storage",
"webRequest",
"webRequestBlocking",
"alarms",
"unlimitedStorage",
"cookies"
],
"content_scripts": [
{
"matches": [
"*://csgolounge.com/*",
"*://dota2lounge.com/*"
],
"js": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/dompurify/src/purify.js",
"lib/js/jquery-ui.min.js",
"node_modules/moment/min/moment.min.js",
"node_modules/moment-timezone/builds/moment-timezone-with-data.min.js",
"node_modules/jstz/dist/jstz.min.js",
"lib/js/ajaxq.js",
"app/helpers.js",
"app/user.js",
"app/match.js",
"app/items.js",
"app/inventory.js",
"app/bet.js",
"app/queue.js",
"app/trades.js",
"app/inject.js"
],
"css": [
"app/css/inject.css"
],
"run_at": "document_start"
},
{
"matches": [
"*://steamcommunity.com/market/listings/*/*"
],
"js": [
"node_modules/jquery/dist/jquery.min.js",
"app/helpers.js",
"app/user.js",
"app/items.js",
"app/pricecheck.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": ["icons/32x32.png"]
}