Block Notifications

Blocks annoying notification prompt appearing on certain websites.

O que é Block Notifications?

Block Notifications é uma extensão do Chrome desenvolvida por BrowserNative, e sua principal característica é "Blocks annoying notification prompt appearing on certain websites.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Block Notifications

Baixe arquivos de extensão Block Notifications no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Block Notifications Block Notifications
ID hmbdemoadbcdfmdjiokhcnoaoepgbhbn
URL Oficial https://chromewebstore.google.com/detail/block-notifications/hmbdemoadbcdfmdjiokhcnoaoepgbhbn
Descrição Blocks annoying notification prompt appearing on certain websites.
Tamanho do Arquivo 27.94 KB
Contagem de Instalações 4,468
Versão Atual 0.1
Última Atualização 2021-01-20
Data de Publicação 2016-12-15
Classificação 3.40/5 Total de 20 Avaliações
Desenvolvedor BrowserNative
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://browsernative.com/block-notifications-chrome/
URL da Página de Ajuda https://browsernative.com/block-notifications-chrome/
URL da Página de Política de Privacidade https://browsernative.com/extensions-privacy-policy
Idiomas Suportados 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"
    }
}