Block Notifications

Blocks annoying notification prompt appearing on certain websites.

Co to jest Block Notifications?

Block Notifications to rozszerzenie Chrome opracowane przez BrowserNative, a jego główną funkcją jest „Blocks annoying notification prompt appearing on certain websites.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Block Notifications

Pobierz pliki rozszerzeń Block Notifications 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

                        Uses chrome.contentSettings API to block sites to show desktop notifications.                    

Podstawowe informacje o rozszerzeniu

Nazwa Block Notifications Block Notifications
ID hmbdemoadbcdfmdjiokhcnoaoepgbhbn
Oficjalny URL https://chromewebstore.google.com/detail/block-notifications/hmbdemoadbcdfmdjiokhcnoaoepgbhbn
Opis Blocks annoying notification prompt appearing on certain websites.
Rozmiar pliku 27.94 KB
Liczba instalacji 4,468
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2021-01-20
Data Publikacji 2016-12-15
Ocena 3.40/5 Łącznie 20 Oceny
Deweloper BrowserNative
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://browsernative.com/block-notifications-chrome/
Adres URL Strony Pomocy https://browsernative.com/block-notifications-chrome/
Adres URL Strony Polityki Prywatności https://browsernative.com/extensions-privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Block Notifications",
    "version": "0.1",
    "description": "Blocks annoying notification prompt appearing on certain websites.",
    "permissions": [
        "contentSettings",
        ""
    ],
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Block Notifications"
    },
    "icons": {
        "128": "icon.png"
    }
}