removeanything

sometimes you just want to get rid of an element quickly

O que é removeanything?

removeanything é uma extensão do Chrome desenvolvida por zeyus, e sua principal característica é "sometimes you just want to get rid of an element quickly".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão removeanything

Baixe arquivos de extensão removeanything 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 is a really simple extension to remove any element from a page by right clicking.

This is useful if you want to hid an image, or an ad form an article, or popups that block a site unless you register, that kind of thing.                    

Informações Básicas da Extensão

Nome removeanything removeanything
ID gmlkkilfhaiefnbnbgbmoodkebnpicfj
URL Oficial https://chromewebstore.google.com/detail/removeanything/gmlkkilfhaiefnbnbgbmoodkebnpicfj
Descrição sometimes you just want to get rid of an element quickly
Tamanho do Arquivo 11.31 KB
Contagem de Instalações 230
Versão Atual 0.1.0
Última Atualização 2015-02-16
Data de Publicação 2015-02-16
Classificação 3.17/5 Total de 6 Avaliações
Desenvolvedor zeyus
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://www.zeyus.com/
URL da Página de Ajuda https://github.com/zeyus/remove-anything
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "removeanything",
    "description": "sometimes you just want to get rid of an element quickly",
    "version": "0.1.0",
    "icons": {
        "128": "res\/icon128.png",
        "16": "res\/icon16.png",
        "48": "res\/icon48.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        ""
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}