forked from yaronf/overlay-clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (35 loc) · 985 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
{
"browser_action": {
"default_icon": {
"19": "clock-icon19.png",
"38": "clock-icon38.png"
},
"default_popup": "options.html",
"default_title": "Overlay Clock"
},
"browser_specific_settings": {
"gecko": {
"id": "{96823de3-bcbd-4dd7-b810-858aa67edb66}"
}
},
"content_scripts": [ {
"js": [ "defaults.js", "clock.js" ],
"matches": [ "http://*/*", "https://*/*", "file://*/*" ],
"run_at": "document_end"
} ],
"content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self';",
"description": "Displays a digital clock on a page.",
"icons": {
"128": "icon128.png",
"48": "icon48.png"
},
"manifest_version": 2,
"name": "Overlay Clock",
"options_ui": {
"page": "options.html"
},
"permissions": [ "storage" ],
"short_name": "OverlayClock",
"update_url": "http://clients2.google.com/service/update2/crx",
"version": "0.7"
}