Unofficial enhacement for WhatsApp™ Web notifications.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_name__",
"description": "Unofficial enhacement for WhatsAppâ„¢ Web notifications.",
"default_locale": "en",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https://web.whatsapp.com/",
"http://web.whatsapp.com/"
],
"icons": {
"16": "icons/128.png",
"48": "icons/128.png",
"128": "icons/128.png"
},
"action": {
"default_icon": {
"16": "icons/128.png",
"48": "icons/128.png",
"128": "icons/128.png"
},
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://web.whatsapp.com/*"
],
"js": [
"content-script.js"
],
"css": [],
"run_at": "document_end"
}
],
"options_ui": {
"page": "options.html",
"browser_style": true
},
"web_accessible_resources": [
{
"resources": [
"inject-script.js"
],
"matches": [
"https://web.whatsapp.com/*"
]
}
],
"version": "1.0.7",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}