Whatsapp Web Notification Customizer

Customize Whatsapp Web Notification Sound

Co to jest Whatsapp Web Notification Customizer?

Whatsapp Web Notification Customizer to rozszerzenie Chrome opracowane przez Amer Sawan, a jego główną funkcją jest „Customize Whatsapp Web Notification Sound”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Whatsapp Web Notification Customizer

Pobierz pliki rozszerzeń Whatsapp Web Notification Customizer 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

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Whatsapp Web Notification Customizer Whatsapp Web Notification Customizer
ID faglnjojbiggpodloaopkodgeholkcmj
Oficjalny URL https://chrome.google.com/webstore/detail/whatsapp-web-notification/faglnjojbiggpodloaopkodgeholkcmj
Opis Customize Whatsapp Web Notification Sound
Rozmiar pliku 81.33 KB
Liczba instalacji 20
Aktualna Wersja 0.0.0.1
Ostatnia Aktualizacja 2020-08-30
Data Publikacji 2020-08-30
Deweloper Amer Sawan
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://dev.amersaw.info
Obsługiwane Języki 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
    }
}