Delete Element

Adds option to context menu to quickly delete a page element

Delete Elementคืออะไร?

Delete Element เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lifeinweeksapp และคุณลักษณะหลักของมันคือ "Adds option to context menu to quickly delete a page element"

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

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

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

                        Adds option to context menu to quickly delete a page element. 

Does NOT permanently delete the item. Use an ad-blocker for that.                    

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

ชื่อ Delete Element Delete Element
ID aeafmlpmnmbckkaapajfhdmbbmdapngm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/delete-element/aeafmlpmnmbckkaapajfhdmbbmdapngm
คำอธิบาย Adds option to context menu to quickly delete a page element
ขนาดไฟล์ 29.11 KB
จำนวนการติดตั้ง 53
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2018-05-14
วันที่เผยแพร่ 2018-05-14
คะแนน 3.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา lifeinweeksapp
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Delete Element",
    "description": "Adds option to context menu to quickly delete a page element",
    "version": "1.0.0",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}