Deletion Prank

Delete any element that is clicked

Deletion Prankคืออะไร?

Deletion Prank เป็นส่วนขยายของ Chrome ที่พัฒนาโดย skeys apps และคุณลักษณะหลักของมันคือ "Delete any element that is clicked"

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

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

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

                        This extension can be enabled and disabled at will within the page, unlike my other extensions. Basically, when the extension is active, any element clicked on the page will be instantaneously deleted before the browser can even activate it. This applies to text, links, and more!                    

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

ชื่อ Deletion Prank Deletion Prank
ID fbepklogcpfkgbfcoinahppdebnahdja
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja
คำอธิบาย Delete any element that is clicked
ขนาดไฟล์ 60.54 KB
จำนวนการติดตั้ง 2,000
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2016-02-01
วันที่เผยแพร่ 2016-02-01
คะแนน 3.67/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา skeys apps
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Deletion Prank",
    "short_name": "Deletion Prank",
    "description": "Delete any element that is clicked",
    "version": "0.0.3",
    "browser_action": {
        "default_image": "asets\/enabled_256.png"
    },
    "web_accessible_resources": [
        "assets\/*"
    ],
    "icons": {
        "256": "assets\/enabled_256.png"
    },
    "background": {
        "scripts": [
            "iconcontroller.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "js": [
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}