Remove Element

Creates a contextual menu item to remove an element from the DOM

O que é Remove Element?

Remove Element é uma extensão do Chrome desenvolvida por https://weilstreet.com, e sua principal característica é "Creates a contextual menu item to remove an element from the DOM".

Capturas de Tela da Extensão

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

                        Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary.

After installation you must reload any open pages for the extension to work.                    

Informações Básicas da Extensão

Nome Remove Element Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
URL Oficial https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho
Descrição Creates a contextual menu item to remove an element from the DOM
Tamanho do Arquivo 6.35 KB
Contagem de Instalações 2,523
Versão Atual 1.0.2
Última Atualização 2018-09-05
Data de Publicação 2018-09-04
Classificação 3.94/5 Total de 32 Avaliações
Desenvolvedor https://weilstreet.com
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Element",
    "version": "1.0.2",
    "description": "Creates a contextual menu item to remove an element from the DOM",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove.js"
            ]
        }
    ]
}