Censor Me

Censor the internet by blocking certain words!

O que é Censor Me?

Censor Me é uma extensão do Chrome desenvolvida por mehulpillaidev25, e sua principal característica é "Censor the internet by blocking certain words!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Censor Me

Baixe arquivos de extensão Censor Me 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

                        Chrome extension that should censor keywords on the current page.
- Enter any keywords you would like to block on websites and delete them later.
- Highlight a word and click the "add word" option on the context menu to quickly censor a word.
- Block websites from popup to stop the extension script from running on those sites.
- A global off switch that turns off the extension's functionality.                    

Informações Básicas da Extensão

Nome Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
URL Oficial https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Descrição Censor the internet by blocking certain words!
Tamanho do Arquivo 16.42 KB
Contagem de Instalações 397
Versão Atual 1.0
Última Atualização 2021-01-19
Data de Publicação 2021-01-19
Classificação 3.17/5 Total de 6 Avaliações
Desenvolvedor mehulpillaidev25
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Censor Me",
    "version": "1.0",
    "description": "Censor the internet by blocking certain words!",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "startup.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "filter.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}