-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (37 loc) · 817 Bytes
/
manifest.json
File metadata and controls
37 lines (37 loc) · 817 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
33
34
35
36
37
{
"manifest_version": 3,
"name": "ChatFocus",
"version": "1.0",
"description": "Enhance productivity within WhatsApp Web by focusing on specific conversations",
"permissions": [
"storage",
"tabs",
"notifications"
],
"host_permissions": [
"https://web.whatsapp.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://web.whatsapp.com/*"],
"js": ["content.js"],
"css": ["styles/content.css"]
}
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
}
},
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
}
}