WhatsApp Notification Changer
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Co to jest WhatsApp Notification Changer?
WhatsApp Notification Changer to rozszerzenie Chrome opracowane przez rafael.galani, a jego główną funkcją jest „A simple extension that allows the user to change the notification sound of web.whatsapp.com.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia WhatsApp Notification Changer
Pobierz pliki rozszerzeń WhatsApp Notification Changer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | jnlilnljmhioncbmofmdlphmagmegkde |
Oficjalny URL | https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde |
Opis | A simple extension that allows the user to change the notification sound of web.whatsapp.com. |
Rozmiar pliku | 83.43 KB |
Liczba instalacji | 460 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-07-30 |
Data Publikacji | 2020-07-30 |
Ocena | 4.00/5 Łącznie 6 Oceny |
Deweloper | rafael.galani |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } |