forked from Nandika-A/EyeProtection
-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
45 lines (45 loc) · 1.15 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
41
42
43
44
45
{
"manifest_version": 3,
"name": "EyeProtection",
"version": "1.0",
"description": "An extension to protect your eyes with the 20-20-20 rule and customizable schedules.",
"permissions": [
"storage",
"notifications",
"tabs",
"activeTab"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/hourglass.png",
"48": "images/hourglass.png",
"128": "images/hourglass.png"
},
"default_title": "Eye Protection Timer"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"]
}
],
"icons": {
"16": "images/hourglass.png",
"48": "images/hourglass.png",
"128": "images/hourglass.png"
},
"commands": {
"activate_extension": {
"suggested_key": {
"default": "Ctrl+E",
"mac": "Command+E"
},
"description": "Activate the extension"
}
},
"options_page": "options.html"
}