Elon Mask

Censor selected keywords during web browsing.

O que é Elon Mask?

Elon Mask é uma extensão do Chrome desenvolvida por Dexter's Lab, e sua principal característica é "Censor selected keywords during web browsing.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Elon Mask

Baixe arquivos de extensão Elon Mask 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

                        “Elon Mask” Chrome plugin is a tool for individuals who want to control the content they consume online. It is a lightweight extension that can be easily installed on the Google Chrome browser, and it provides users with the ability to specify the keywords they want to censor.

When a user installs the plugin, they can enter a list of words and phrases that they want to be censored. The plugin will then scan web pages and block out any text or images that contain the specified keywords. This can be useful for individuals who want to avoid triggering content, such as violence or profanity, or for those who want to limit their exposure to certain topics or persons.

The plugin is designed to be unobtrusive and user-friendly. When it blocks content, it displays a black block in its place, and users can easily toggle the plugin on and off if they want to temporarily view the content that has been censored.                    

Informações Básicas da Extensão

Nome Elon Mask Elon Mask
ID ahodpknjnplbmepakjkalcgfmfpmmgfm
URL Oficial https://chromewebstore.google.com/detail/elon-mask/ahodpknjnplbmepakjkalcgfmfpmmgfm
Descrição Censor selected keywords during web browsing.
Tamanho do Arquivo 1.17 MB
Contagem de Instalações 27
Versão Atual 0.3
Última Atualização 2023-04-09
Data de Publicação 2022-11-28
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Dexter's Lab
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://www.paypal.com/donate/?hosted_button_id=NB9JTCU7GQAZJ
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Elon Mask",
    "description": "Censor selected keywords during web browsing.",
    "version": "0.3",
    "icons": {
        "16": "\/images\/elon_mask_16.png",
        "48": "\/images\/elon_mask_48.png",
        "128": "\/images\/elon_mask_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/elon_mask_16.png",
            "48": "\/images\/elon_mask_48.png",
            "128": "\/images\/elon_mask_128.png"
        },
        "default_title": "Elon Mask Test",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            }
        }
    }
}