Element Eraser

This extension removes elements with a given class name that contain any given search terms

O que é Element Eraser?

Element Eraser é uma extensão do Chrome desenvolvida por arash.out, e sua principal característica é "This extension removes elements with a given class name that contain any given search terms".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Element Eraser

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

                        Element Eraser is a open-source chrome extension that removes any HTML elements that contain user specified terms. 

Simply specify the "class" attribute of the HTML elements you want to remove, add some search terms and click remove.

You can enter search terms and class attributes by typing into the corresponding input box and pressing the 'ENTER' , 'TAB' or ','(comma) keys to add them to the list.

It is also possibly to store and retrieve settings using a 'key'.

Element Eraser can also run continuously if the toggle switch is flipped to ON.                    

Informações Básicas da Extensão

Nome Element Eraser Element Eraser
ID cflkmoejpjmceaiahbjdkmehceccknce
URL Oficial https://chromewebstore.google.com/detail/element-eraser/cflkmoejpjmceaiahbjdkmehceccknce
Descrição This extension removes elements with a given class name that contain any given search terms
Tamanho do Arquivo 68.14 KB
Contagem de Instalações 92
Versão Atual 0.0.0.92
Última Atualização 2017-07-07
Data de Publicação 2017-07-07
Classificação 1.50/5 Total de 2 Avaliações
Desenvolvedor arash.out
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Element Eraser",
    "description": "This extension removes elements with a given class name that contain any given search terms",
    "short_name": "Remove unwanted content where-ever you go",
    "version": "0.0.0.92",
    "author": "Arash Outadi",
    "browser_action": {
        "default_icon": "trashCanIcon.png",
        "default_popup": "popup.html",
        "default_title": "Start removing divs"
    },
    "background": {
        "scripts": [
            "constants.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "constants.js",
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "",
        "storage"
    ]
}