Remove Element

This extension will remove any element

Remove Elementคืออะไร?

Remove Element เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mnetzer และคุณลักษณะหลักของมันคือ "This extension will remove any element"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Remove Element ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Have you ever wanted to blast any element on the page? This will do it. 100% Guaranteed to remove any element with a simple right click -> Remove Element. This works on iframes as well which basically means you can even get rid of elements inside video frames such as youtube vimeo and twitch! 

Also, this is open-source! So if you want to see how this was created check this out:
https://github.com/moishinetzer/remove-element                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
คำอธิบาย This extension will remove any element
ขนาดไฟล์ 150 KB
จำนวนการติดตั้ง 81
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-02-02
วันที่เผยแพร่ 2021-02-02
ผู้พัฒนา mnetzer
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/moishinetzer/remove-element
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "This extension will remove any element",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "background.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}