-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
29 lines (29 loc) · 910 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
{
"name": "Night Mode for Google Chrome™ beta",
"short_name": "Night Mode",
"description": "Inverts page's colors to make it more readable at night",
"version": "0.4.5",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["tabs","activeTab", "http://*/", "background","<all_urls>"],
"icons": {
"128": "images/logo-128x128.png"
},
"background": { "scripts": ["js/background.js"] },
"page_action": {
"default_icon": {
"19": "images/moon-19x19.png"
},
"default_title": "Night Mode"
},
"content_scripts" : [
{
"matches" : [
"<all_urls>"
],
"js" : ["js/jquery-2.1.1.min.js","js/gcffNightMode.js"],
"run_at" : "document_end",
"all_frames" : true
}
],
"manifest_version": 2
}