This repository has been archived by the owner on Jan 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
60 lines (60 loc) · 1.64 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
{
"icons": {
"16": "favicon/favicon-16.png",
"48": "favicon/favicon-48.png",
"96": "favicon/favicon-96.png",
"128": "favicon/favicon-128.png"
},
"content_scripts": [
{
"matches": ["*://play.kickbase.com/*"],
"run_at": "document_start",
"js": ["src/content_script.ts"],
"css": [
"src/styles/bkb.css",
"src/styles/bundesliga.css",
"src/styles/ligaboard.css",
"src/styles/livematchday.css",
"src/styles/tabelle.css",
"src/styles/transfermarkt.css",
"src/styles/transfermarkt-kader.css",
"src/styles/transfermarkt-kaufen.css",
"src/styles/transfermarkt-scouting.css",
"src/styles/transfermarkt-verkaufen.css",
"src/styles/_player-row.css",
"src/styles/_frame.css",
"src/styles/_vars.css",
"src/styles/_fonts.css"
]
}
],
"background": {
"scripts": ["src/background_script.ts"],
"persistent": false
},
"web_accessible_resources": ["src/web_accessible_resource.js"],
"options_ui": {
"page": "src/options_ui/settings.html",
"open_in_tab": true
},
"browser_action": {
"default_popup": "src/options_ui/settings.html",
"default_icon": "favicon/favicon-48.png",
"default_title": "better-kickbase"
},
"permissions": [
"storage",
"tabs",
"*://play.kickbase.com/*",
"https://raw.githubusercontent.com/FelixSchuSi/better-kickbase/price-trends-data/*"
],
"externally_connectable": {
"matches": ["*://play.kickbase.com/*"]
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "89.0"
}
}
}