Remove Element

This extension will remove any element

O que é Remove Element?

Remove Element é uma extensão do Chrome desenvolvida por mnetzer, e sua principal característica é "This extension will remove any element".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Remove Element

Baixe arquivos de extensão Remove Element 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

                        Have you ever wanted to blast any element on the page? This will do it. 100% Guaranteed to remove any element with a simple right click -> Remove Element. This works on iframes as well which basically means you can even get rid of elements inside video frames such as youtube vimeo and twitch! 

Also, this is open-source! So if you want to see how this was created check this out:
https://github.com/moishinetzer/remove-element                    

Informações Básicas da Extensão

Nome Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
URL Oficial https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
Descrição This extension will remove any element
Tamanho do Arquivo 150 KB
Contagem de Instalações 81
Versão Atual 1.0
Última Atualização 2021-02-02
Data de Publicação 2021-02-02
Desenvolvedor mnetzer
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/moishinetzer/remove-element
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "This extension will remove any element",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "background.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}