WhatsApp Notification Changer
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Cos'è WhatsApp Notification Changer?
WhatsApp Notification Changer è un'estensione di Chrome sviluppata da rafael.galani, e la sua funzione principale è "A simple extension that allows the user to change the notification sound of web.whatsapp.com.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WhatsApp Notification Changer
Scarica i file di estensione WhatsApp Notification Changer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Informazioni di Base sull'Estensione
Nome | |
ID | jnlilnljmhioncbmofmdlphmagmegkde |
URL Ufficiale | https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde |
Descrizione | A simple extension that allows the user to change the notification sound of web.whatsapp.com. |
Dimensione del File | 83.43 KB |
Conteggio Installazioni | 460 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-07-30 |
Data di Pubblicazione | 2020-07-30 |
Valutazione | 4.00/5 Totale 6 Valutazioni |
Sviluppatore | rafael.galani |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WhatsApp Notification Changer", "version": "1.0", "description": "A simple extension that allows the user to change the notification sound of web.whatsapp.com.", "permissions": [ "unlimitedStorage", "declarativeContent", "storage", "webRequest", "webRequestBlocking", "*:\/\/web.whatsapp.com\/*" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "content_scripts": [ { "js": [ "content-script.js" ], "matches": [ "*:\/\/web.whatsapp.com\/*" ] } ], "web_accessible_resources": [ "modifier.js" ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2 } |