-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 828 Bytes
/
Copy pathmanifest.json
File metadata and controls
32 lines (32 loc) · 828 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
32
{
"manifest_version": 3,
"name": "Block it for Me",
"description": "A Site blocker - Block unwanted Sites and increase productivity.",
"version": "1.0.2",
"action": {
"default_popup": "views/popup.html",
"default_icon": "assets/images/icon-16.png"
},
"icons": {
"16": "assets/images/icon-16.png",
"32": "assets/images/icon-32.png",
"48": "assets/images/icon-48.png",
"128": "assets/images/icon-128.png"
},
"host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "assets/js/backgroundWorker.js"
},
"permissions": [
"storage", "scripting", "webNavigation", "nativeMessaging", "contextMenus"
],
"options_page": "views/options.html",
"web_accessible_resources": [
{
"resources": ["assets/css/common.css", "assets/fonts/GothicA1-Regular.ttf"],
"matches": ["<all_urls>"]
}
]
}