WhatsApp Notification Changer
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Vad är WhatsApp Notification Changer?
WhatsApp Notification Changer är en Chrome-tillägg utvecklad av rafael.galani, och dess huvudfunktion är "A simple extension that allows the user to change the notification sound of web.whatsapp.com.".
Tilläggsskärmbilder
Ladda ner WhatsApp Notification Changer-förlängningens CRX-fil
Ladda ner WhatsApp Notification Changer-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
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Grundläggande Information om Tillägg
Namn | |
ID | jnlilnljmhioncbmofmdlphmagmegkde |
Officiell webbadress | https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde |
Beskrivning | A simple extension that allows the user to change the notification sound of web.whatsapp.com. |
Filstorlek | 83.43 KB |
Antal Installationer | 460 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2020-07-30 |
Publiceringsdatum | 2020-07-30 |
Betyg | 4.00/5 Totalt 6 Betyg |
Utvecklare | rafael.galani |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } |