-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.v3.json
34 lines (34 loc) · 983 Bytes
/
manifest.v3.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
{
"name": "DMOJ Rating Predictor",
"version": "1.0.5",
"manifest_version": 3,
"description": "An extension which shows rating changes next to DMOJ contest rankings.",
"homepage_url": "https://dmoj.ca",
"icons": {
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https://evanzhang.ca/"
],
"incognito": "split",
"options_page": "src/main.html",
"action": {
"default_title": "DMOJ Rating Predictor",
"default_popup": "src/main.html"
},
"background": {
"service_worker": "src/js/background.js"
},
"content_scripts": [
{
"matches": ["https://dmoj.ca/contest/*/ranking/", "https://dmoj.ca/users/"],
"css": ["src/css/predictor.css"],
"js": ["src/vendor/jquery-3.4.1.min.js", "src/js/common.js", "src/js/predictor.js"]
}
]
}