Content Warning

This extension provides customizable content warnings

O que é Content Warning?

Content Warning é uma extensão do Chrome desenvolvida por justinas.banys1, e sua principal característica é "This extension provides customizable content warnings".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Content Warning

Baixe arquivos de extensão Content Warning 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

                        This extension provides content warnings for particular keywords while browsing on various websites. The content warnings are easily customizable. Users can add, remove, and disable different warnings according to their preferences and whatever they find convenient using a simple interface. In case a keyword is found on some website, a pop-up is thrown providing the user with two options: continue browsing or leaving the site.                    

Informações Básicas da Extensão

Nome Content Warning Content Warning
ID fifecojajmdemfccknoappgllkcoihbc
URL Oficial https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc
Descrição This extension provides customizable content warnings
Tamanho do Arquivo 17.76 KB
Contagem de Instalações 12
Versão Atual 1.4.1
Última Atualização 2018-06-02
Data de Publicação 2018-06-01
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor justinas.banys1
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Content Warning",
    "description": "This extension provides customizable content warnings",
    "version": "1.4.1",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "cw_icon.png"
    },
    "icons": {
        "128": "cw_icon.png"
    },
    "background": {
        "scripts": [
            "js\/content.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ]
}