Element Eraser

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

什么是Element Eraser?

Element Eraser是由arash.out开发的Chrome扩展程序,该扩展的主要功能是“This extension removes elements with a given class name that contain any given search terms”。

扩展截图

screenshot

下载Element Eraser扩展crx文件

下载Element Eraser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Element Eraser Element Eraser
ID cflkmoejpjmceaiahbjdkmehceccknce
官方URL https://chromewebstore.google.com/detail/element-eraser/cflkmoejpjmceaiahbjdkmehceccknce
简介 This extension removes elements with a given class name that contain any given search terms
文件大小 68.14 KB
安装次数 92
当前版本 0.0.0.92
更新时间 2017-07-07
上架时间 2017-07-07
评分 1.50/5 共2次评分
开发者 arash.out
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}