-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.v2.json
35 lines (35 loc) · 1007 Bytes
/
manifest.v2.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
{
"name": "DMOJ Rating Predictor",
"version": "1.0.5",
"manifest_version": 2,
"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",
"https://evanzhang.ca/",
"https://dmoj.ca/"
],
"incognito": "spanning",
"options_ui": {
"page": "src/main.html"
},
"browser_action": {
"default_title": "DMOJ Rating Predictor",
"default_popup": "src/main.html"
},
"background": {
"scripts": ["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"]
}
]
}