Element Eraser

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

Vad är Element Eraser?

Element Eraser är en Chrome-tillägg utvecklad av arash.out, och dess huvudfunktion är "This extension removes elements with a given class name that contain any given search terms".

Tilläggsskärmbilder

screenshot

Ladda ner Element Eraser-förlängningens CRX-fil

Ladda ner Element Eraser-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Element Eraser Element Eraser
ID cflkmoejpjmceaiahbjdkmehceccknce
Officiell webbadress https://chromewebstore.google.com/detail/element-eraser/cflkmoejpjmceaiahbjdkmehceccknce
Beskrivning This extension removes elements with a given class name that contain any given search terms
Filstorlek 68.14 KB
Antal Installationer 92
Aktuell Version 0.0.0.92
Senast Uppdaterad 2017-07-07
Publiceringsdatum 2017-07-07
Betyg 1.50/5 Totalt 2 Betyg
Utvecklare arash.out
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}