forked from rodel77/SpigotSalesGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (33 loc) · 971 Bytes
/
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
{
"manifest_version": 2,
"name": "Spigot Sales Graph",
"description": "See graph/total gained and total sales in your premium spigot resources",
"version": "1.4.6",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"https://www.spigotmc.org/*",
"storage"
],
"browser_action": {
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": ["https://www.spigotmc.org/*/buyers"],
"js": ["libs/highcharts.js", "libs/exporting.js", "common/helper.js", "common/money.js", "resource/buyers.js", "resource/dashboard.js"],
"run_at": "document_idle"
},
{
"matches": ["https://www.spigotmc.org/*/authors/*"],
"js": ["libs/highcharts.js", "libs/exporting.js", "common/helper.js", "common/money.js", "author/author.js"]
},
{
"matches": ["https://www.spigotmc.org/resources/*/edit*"],
"js": ["common/helper.js", "resource/edit/sale_calculator.js"]
}
]
}