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
官方網址 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"
    ]
}