-
Notifications
You must be signed in to change notification settings - Fork 75
/
manifest.json
31 lines (31 loc) · 1000 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
{
"manifest_version": 3,
"name": "WAIncognito",
"short_name": "WAIncognito",
"description": "Be invisible on WhatsApp™ Web by disabling read receipts and presence updates",
"version": "2.1.9",
"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","core/status_download.js"],
"css": ["styles.css", "lib/css/drop-theme-basic.css"]
}
],
"web_accessible_resources": [{"resources": ["lib/*", "core/*", "images/*"], "matches": ["https://web.whatsapp.com/*"]} ]
}