Element Eraser

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

Was ist Element Eraser?

Element Eraser ist eine Chrome-Erweiterung, die von arash.out entwickelt wurde, und ihr Hauptmerkmal ist "This extension removes elements with a given class name that contain any given search terms".

Erweiterungsscreenshots

screenshot

Element Eraser-Erweiterungs-CRX-Datei herunterladen

Laden Sie Element Eraser-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Element Eraser Element Eraser
ID cflkmoejpjmceaiahbjdkmehceccknce
Offizielle URL https://chromewebstore.google.com/detail/element-eraser/cflkmoejpjmceaiahbjdkmehceccknce
Beschreibung This extension removes elements with a given class name that contain any given search terms
Dateigröße 68.14 KB
Installationsanzahl 92
Aktuelle Version 0.0.0.92
Letztes Update 2017-07-07
Veröffentlichungsdatum 2017-07-07
Bewertung 1.50/5 Insgesamt 2 Bewertungen
Entwickler arash.out
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}