Deletion Prank

Delete any element that is clicked

Apa itu Deletion Prank?

Deletion Prank adalah ekstensi Chrome yang dikembangkan oleh skeys apps, dan fitur utamanya adalah "Delete any element that is clicked".

Unduh Berkas CRX Ekstensi Deletion Prank

Unduh file ekstensi Deletion Prank dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Deletion Prank Deletion Prank
ID fbepklogcpfkgbfcoinahppdebnahdja
URL Resmi https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja
Deskripsi Delete any element that is clicked
Ukuran File 60.54 KB
Jumlah Instalasi 2,000
Versi Saat Ini 0.0.3
Terakhir Diperbarui 2016-02-01
Tanggal Publikasi 2016-02-01
Penilaian 3.67/5 Total 6 Penilaian
Pengembang skeys apps
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}