-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
39 lines (39 loc) · 958 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
{
"manifest_version": 3,
"name": "WAIncognito",
"short_name": "WAIncognito",
"description": "Be invisible on WhatsApp™ Web by disabling read receipts and presence updates",
"version": "1.9.6",
"permissions": ["storage"],
"icons": { "128": "images/icon_128_blue.png" },
"action": {
"default_icon": "images/icon_128_reshaped.png"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": ["https://web.whatsapp.com/*"],
"content_scripts": [
{
"matches": ["https://web.whatsapp.com/*"],
"js": ["core_injection.js"],
"run_at": "document_start"
},
{
"matches": ["https://web.whatsapp.com/*"],
"js": [
"core/ui_class_names.js",
"core/ui.js",
"lib/drop.js",
"lib/sweetalert.min.js"
],
"css": ["styles.css", "lib/css/drop-theme-basic.css"]
}
],
"web_accessible_resources": [
{
"resources": ["lib/*", "core/*", "images/*"],
"matches": ["https://web.whatsapp.com/*"]
}
]
}