-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (50 loc) · 1.39 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
{
"name": "__MSG_name__",
"description": "__MSG_description__",
"version": "1.0.0",
"manifest_version": 3,
"default_locale": "en",
"icons": {
"32": "icons/icon-32.png",
"64": "icons/icon-32.png",
"128": "icons/icon-32.png"
},
"action": {
"default_popup": "index.html",
"default_icon": "icons/icon-32.png"
},
"content_scripts": [
{
"js": ["src/components/event/index.tsx", "src/components/unratedSpoilers/unratedSpoilers.ts"],
"matches": ["https://www.cagematch.net/?id=1&*"],
"run_at": "document_end"
},
{
"js": ["src/components/event/buttonPressForRefreshListener.ts"],
"matches": ["https://www.cagematch.net/?id=111&*"],
"run_at": "document_idle"
},
{
"js": [
"src/components/redirect-on-card/redirectOnCard.ts",
"src/components/event/eventRefreshWithMouse.ts"
],
"matches": ["https://www.cagematch.net/*"],
"run_at": "document_idle"
},
{
"js": ["src/components/graphs/index.tsx", "src/components/topsBtns/topsBtns.ts"],
"matches": ["https://www.cagematch.net/?id=68&page=2"],
"run_at": "document_end"
},
{
"js": ["src/components/favEvents/index.tsx"],
"matches": ["https://www.cagematch.net/?id="],
"run_at": "document_end"
}
],
"background": {
"service_worker": "src/background.ts"
},
"permissions": ["storage"]
}