elementZapper

Disappear at once!

O que é elementZapper?

elementZapper é uma extensão do Chrome desenvolvida por http://www.dsebastien.net, e sua principal característica é "Disappear at once!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão elementZapper

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

                        This extension allows you to easily remove elements from Web pages.

Let's say that a gigantic cat image is bothering you (though you find it lovely) on some Website. You want it gone? Then right click on it, select "Zap!" and there you have it, gone!

The same applies to selections that you make on pages; just select a bunch of paragraphs, images, etc, right click, select "Zap!" and they're gone.                    

Informações Básicas da Extensão

Nome elementZapper elementZapper
ID efeljanahmlnjhckmohcfbgkfdjdmnog
URL Oficial https://chrome.google.com/webstore/detail/elementzapper/efeljanahmlnjhckmohcfbgkfdjdmnog
Descrição Disappear at once!
Tamanho do Arquivo 18.52 KB
Contagem de Instalações 459
Versão Atual 1.1
Última Atualização 2013-05-13
Data de Publicação 2013-05-13
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor http://www.dsebastien.net
Tipo de Pagamento free
Site da Extensão http://www.dsebastien.net
URL da Página de Ajuda https://github.com/dsebastien/elementZapper
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "elementZapper",
    "description": "Disappear at once!",
    "version": "1.1",
    "icons": {
        "128": "zap_128.png",
        "64": "zap_64.png",
        "32": "zap_32.png",
        "16": "zap_16.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}