Whatsapp Web Notification Customizer
Customize Whatsapp Web Notification Sound
Vad är Whatsapp Web Notification Customizer?
Whatsapp Web Notification Customizer är en Chrome-tillägg utvecklad av Amer Sawan, och dess huvudfunktion är "Customize Whatsapp Web Notification Sound".
Tilläggsskärmbilder
Ladda ner Whatsapp Web Notification Customizer-förlängningens CRX-fil
Ladda ner Whatsapp Web Notification Customizer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Are you annoyed from the noisy Whatsapp™ web notification sound?! Are you frustrated that Whatsapp don't allow you to change that sound?! Using this extension you can easily customize the notification sound as you wish
Grundläggande Information om Tillägg
Namn | |
ID | faglnjojbiggpodloaopkodgeholkcmj |
Officiell webbadress | https://chrome.google.com/webstore/detail/whatsapp-web-notification/faglnjojbiggpodloaopkodgeholkcmj |
Beskrivning | Customize Whatsapp Web Notification Sound |
Filstorlek | 81.33 KB |
Antal Installationer | 20 |
Aktuell Version | 0.0.0.1 |
Senast Uppdaterad | 2020-08-30 |
Publiceringsdatum | 2020-08-30 |
Utvecklare | Amer Sawan |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://dev.amersaw.info |
Stödda Språk | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Whatsapp Web Notification Customizer", "version": "0.0.0.1", "homepage_url": "https:\/\/github.com\/amersaw\/WhatsApp-Web-Notification-Customizer", "description": "Customize Whatsapp Web Notification Sound", "manifest_version": 2, "permissions": [ "storage", "webRequest", "webRequestBlocking", "https:\/\/web.whatsapp.com\/*" ], "options_page": "options.html", "page_action": { "default_popup": "popup.html", "default_icon": { "128": "images\/WappCustomNotification-128.png" } }, "icons": { "128": "images\/WappCustomNotification-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "js": [ "whatsapp.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true } } |