Block Notifications

Blocks annoying notification prompt appearing on certain websites.

Cos'è Block Notifications?

Block Notifications è un'estensione di Chrome sviluppata da BrowserNative, e la sua funzione principale è "Blocks annoying notification prompt appearing on certain websites.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Block Notifications

Scarica i file di estensione Block Notifications in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Block Notifications Block Notifications
ID hmbdemoadbcdfmdjiokhcnoaoepgbhbn
URL Ufficiale https://chromewebstore.google.com/detail/block-notifications/hmbdemoadbcdfmdjiokhcnoaoepgbhbn
Descrizione Blocks annoying notification prompt appearing on certain websites.
Dimensione del File 27.94 KB
Conteggio Installazioni 4,468
Versione Corrente 0.1
Ultimo Aggiornamento 2021-01-20
Data di Pubblicazione 2016-12-15
Valutazione 3.40/5 Totale 20 Valutazioni
Sviluppatore BrowserNative
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://browsernative.com/block-notifications-chrome/
URL della Pagina di Aiuto https://browsernative.com/block-notifications-chrome/
URL della Pagina della Politica sulla Privacy https://browsernative.com/extensions-privacy-policy
Lingue Supportate 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"
    }
}