-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
31 lines (31 loc) · 853 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
{
"name": "Page Clock",
"version": "0.1",
"description": " Show time in 12 hour format at bottom right corner",
"permissions": ["storage"],
"browser_action": {
"default_icon": {
"16": "images/icons8-watch-64.png",
"24": "images/icons8-watch-64.png",
"32": "images/icons8-watch-64.png"
},
"default_title": "Page Clock",
"default_popup": "popup.html"
},
"icons": {
"16": "images/icons8-watch-64.png",
"32": "images/icons8-watch-64.png",
"48": "images/icons8-watch-64.png",
"128": "images/icons8-watch-64.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["content.js"],
"run_at": "document_end"
}
],
"manifest_version": 2
}