-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
42 lines (42 loc) · 1.09 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
{
"name": "CF-Dark Theme",
"version": "0.1.0",
"author": "Prashant (Prashant0664 on github)",
"description": "Change Codeforces Theme",
"permissions": ["tabs"],
"host_permissions": ["https://codeforces.com/*"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://codeforces.com/*"],
"js": ["contentScript.js"],
"css": ["popup.css"]
}
],
"web_accessible_resources": [
{
"resources": [
"icons/bookmark.png",
"icons/play.png",
"icons/delete.png",
"icons/save.png"
],
"matches": ["https://codeforces.com/*"]
}
],
"action": {
"default_icon": {
"16": "icons/apple-touch-icon.png",
"24": "icons/apple-touch-icon.png",
"32": "icons/apple-touch-icon.png"
},
"default_title": "CF_Dark Theme",
"default_popup": "popup.html"
},
"externally_connectable": {
"matches": ["https://codeforces.com/*"]
},
"manifest_version": 3
}