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
Eメール [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"
    ]
}