-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmanifest.json
52 lines (52 loc) · 1004 Bytes
/
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
{
"manifest_version": 3,
"name": "Dark Mode",
"version": "3.3.11",
"description": "__MSG_description__",
"default_locale": "en",
"icons": {
"16": "assets/icons/16.png",
"32": "assets/icons/32.png",
"48": "assets/icons/48.png",
"128": "assets/icons/128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "options-page/index.html"
},
"options_page": "options-page/index.html",
"content_scripts": [
{
"all_frames": true,
"match_about_blank": true,
"css": [
"content-scripts/styles.css"
],
"js": [
"assets/satus/satus.js",
"content-scripts/core.js",
"content-scripts/custom-css.js",
"content-scripts/dynamic-theme.js",
"content-scripts/filters.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}
],
"host_permissions": [
"<all_urls>"
],
"permissions": [
"scripting",
"storage",
"tabs"
],
"optional_permissions": [
"downloads"
],
"offline_enabled": true
}