Element Eraser

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

Qu'est-ce que Element Eraser ?

Element Eraser est une extension Chrome développée par arash.out, et sa fonction principale est "This extension removes elements with a given class name that contain any given search terms".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Element Eraser

Téléchargez les fichiers d'extension Element Eraser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Element Eraser Element Eraser
ID cflkmoejpjmceaiahbjdkmehceccknce
URL Officiel https://chromewebstore.google.com/detail/element-eraser/cflkmoejpjmceaiahbjdkmehceccknce
Description This extension removes elements with a given class name that contain any given search terms
Taille du Fichier 68.14 KB
Nombre d'Installations 92
Version Actuelle 0.0.0.92
Dernière Mise à Jour 2017-07-07
Date de Publication 2017-07-07
Évaluation 1.50/5 Total 2 Évaluations
Développeur arash.out
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}