Remove Element

Remove an HTML element from the context menu (right-click).

O que é Remove Element?

Remove Element é uma extensão do Chrome desenvolvida por atheimanksu, e sua principal característica é "Remove an HTML element from the context menu (right-click).".

Capturas de Tela da Extensão

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

                        Remove Element allows you to remove any HTML element by right clicking the element and selecting "Remove Element" from the Chrome context menu.

Extremely simple and efficient code is available at https://github.com/atheiman/remove-element                    

Informações Básicas da Extensão

Nome Remove Element Remove Element
ID jmmocdecnafloeaphiidpofionaifhjo
URL Oficial https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo
Descrição Remove an HTML element from the context menu (right-click).
Tamanho do Arquivo 178 KB
Contagem de Instalações 363
Versão Atual 1.0
Última Atualização 2015-09-03
Data de Publicação 2015-09-02
Classificação 2.00/5 Total de 8 Avaliações
Desenvolvedor atheimanksu
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "Remove an HTML element from the context menu (right-click).",
    "version": "1.0",
    "author": "Austin Heiman",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "images\/red-x-16.png",
        "48": "images\/red-x-48.png",
        "128": "images\/red-x-128.png"
    },
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}