Element Eraser

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

Element Eraser là gì?

Element Eraser là một tiện ích mở rộng Chrome được phát triển bởi arash.out, và tính năng chính của nó là "This extension removes elements with a given class name that contain any given search terms".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Element Eraser

Tải xuống các tệp mở rộng Element Eraser dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Element Eraser Element Eraser
ID cflkmoejpjmceaiahbjdkmehceccknce
URL Chính Thức https://chromewebstore.google.com/detail/element-eraser/cflkmoejpjmceaiahbjdkmehceccknce
Mô tả This extension removes elements with a given class name that contain any given search terms
Kích Thước Tệp 68.14 KB
Số Lần Cài Đặt 92
Phiên Bản Hiện Tại 0.0.0.92
Cập Nhật Lần Cuối 2017-07-07
Ngày Phát Hành 2017-07-07
Đánh Giá 1.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển arash.out
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}