Deletion Prank

Delete any element that is clicked

Deletion Prank là gì?

Deletion Prank là một tiện ích mở rộng Chrome được phát triển bởi skeys apps, và tính năng chính của nó là "Delete any element that is clicked".

Tải xuống tệp CRX của tiện ích mở rộng Deletion Prank

Tải xuống các tệp mở rộng Deletion Prank dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Deletion Prank Deletion Prank
ID fbepklogcpfkgbfcoinahppdebnahdja
URL Chính Thức https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja
Mô tả Delete any element that is clicked
Kích Thước Tệp 60.54 KB
Số Lần Cài Đặt 2,000
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2016-02-01
Ngày Phát Hành 2016-02-01
Đánh Giá 3.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển skeys apps
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}