-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 759 Bytes
/
Copy pathmanifest.json
File metadata and controls
31 lines (31 loc) · 759 Bytes
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
{
"manifest_version": 2,
"name": "Productivity Plus",
"version": "1.0",
"description": "Blocks distracting websites and tracks browsing time",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*",
"<all_urls>",
"notifications"
],
"background": {
"scripts": ["js/background.js"],
"persistent": true
},
"browser_action": {
"default_icon": "img/icon48.png",
"default_popup": "html/popup.html"
},
"options_page": "html/options.html"
}