-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
41 lines (41 loc) · 935 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
36
37
38
39
40
41
{
"manifest_version": 2,
"name": "Focus",
"description": "productivity",
"version": "1.89",
"icons": {
"19": "dist/img/logo-sm-blue.png",
"38": "dist/img/logo-lg-blue.png",
"48": "dist/img/logo-lg-blue.png",
"128": "dist/img/logo-lg-blue.png"
},
"browser_action": {
"default_icon": {
"19": "dist/img/logo-sm-blue.png",
"38": "dist/img/logo-lg-blue.png",
"48": "dist/img/logo-lg-blue.png",
"128": "dist/img/logo-lg-blue.png"
},
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage",
"notifications",
"alarms"
],
"background": {
"scripts": ["dist/js/background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["dist/js/content.js"],
"run_at": "document_start"
}
],
"chrome_url_overrides" : {
"newtab": "newtab.html"
}
}