Element Eraser

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

Element Eraserคืออะไร?

Element Eraser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย arash.out และคุณลักษณะหลักของมันคือ "This extension removes elements with a given class name that contain any given search terms"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Element Eraser

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}