RemoveElement

Remove HTML elements from the right-click context menu

RemoveElementคืออะไร?

RemoveElement เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sa1hon และคุณลักษณะหลักของมันคือ "Remove HTML elements from the right-click context menu"

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

screenshot

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

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

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

                        More easily remove elements without opening developer tools.

Right-click over the HTML element you want to delete.
You can view the tag name and size in the context menu.
And all you have to do is click it.                    

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

ชื่อ RemoveElement RemoveElement
ID jjhnenbbbbgojdbealmpdkmbkbnmeimf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/removeelement/jjhnenbbbbgojdbealmpdkmbkbnmeimf
คำอธิบาย Remove HTML elements from the right-click context menu
ขนาดไฟล์ 11.65 KB
จำนวนการติดตั้ง 94
เวอร์ชันปัจจุบัน 0.0.6
อัปเดตครั้งล่าสุด 2023-03-02
วันที่เผยแพร่ 2019-12-29
ผู้พัฒนา sa1hon
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/saihon/remove-element
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RemoveElement",
    "version": "0.0.6",
    "description": "Remove HTML elements from the right-click context menu",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/removeElement.js"
            ]
        }
    ],
    "manifest_version": 2
}