-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (40 loc) · 1.06 KB
/
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
{
"manifest_version": 2,
"name": "Whale loves Pomodoro",
"version": "1.1.0",
"description": "The fancy timer about Pomodoro technique for help you to improve your concentration",
"icons": {
"16": "images/logo_16.png",
"32": "images/logo_32.png",
"48": "images/logo_48.png",
"64": "images/logo_64.png",
"128": "images/logo_128.png"
},
"permissions": ["storage", "notifications", "idle"],
"sidebar_action": {
"default_page": "./dist/index.html",
"default_icon": {
"16": "images/symbol_16.png",
"32": "images/symbol_32.png",
"48": "images/symbol_48.png",
"64": "images/symbol_64.png",
"128": "images/symbol_128.png"
},
"default_title": "뽀모도로 타이머",
"use_navigation_bar": false
},
"background": {
"scripts": ["./dist/background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_end",
"js": ["content_script.js"],
"all_frames": true
}
],
"web_accessible_resources": [
]
}