Remove Element

Remove an HTML element from the context menu (right-click).

Remove Elementคืออะไร?

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

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

screenshot
screenshot

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

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

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

                        Remove Element allows you to remove any HTML element by right clicking the element and selecting "Remove Element" from the Chrome context menu.

Extremely simple and efficient code is available at https://github.com/atheiman/remove-element                    

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

ชื่อ Remove Element Remove Element
ID jmmocdecnafloeaphiidpofionaifhjo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo
คำอธิบาย Remove an HTML element from the context menu (right-click).
ขนาดไฟล์ 178 KB
จำนวนการติดตั้ง 363
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-09-03
วันที่เผยแพร่ 2015-09-02
คะแนน 2.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา atheimanksu
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "Remove an HTML element from the context menu (right-click).",
    "version": "1.0",
    "author": "Austin Heiman",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "images\/red-x-16.png",
        "48": "images\/red-x-48.png",
        "128": "images\/red-x-128.png"
    },
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}