-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
30 lines (29 loc) · 902 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
{
"name": "Night Vision",
"short_name": "nightvision",
"description": "Make websites easier to view by inverting colors. Open source and customizable.",
"version": "0.2.2",
"manifest_version": 2,
"browser_action": {
"default_title": "Click to switch modes",
"default_icon": "icons/night256.png"
},
"background":{
"scripts":["src/bg/background.js"],
"persistent": true
},
"icons": {
"128": "icons/night128.png",
"64": "icons/night64.png",
"48": "icons/night48.png",
"16": "icons/night16.png"
},
"options_page": "options/index.html",
"permissions":["https://*/*", "http://*/*", "storage"],
"content_scripts": [{
"matches":["https://*/*", "http://*/*"],
"match_about_blank": true,
"css": ["stylesheets/dummy.css"],
"run_at": "document_start"
}]
}