Deletion Prank

Delete any element that is clicked

Cos'è Deletion Prank?

Deletion Prank è un'estensione di Chrome sviluppata da skeys apps, e la sua funzione principale è "Delete any element that is clicked".

Scarica il file CRX dell'estensione Deletion Prank

Scarica i file di estensione Deletion Prank in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Deletion Prank Deletion Prank
ID fbepklogcpfkgbfcoinahppdebnahdja
URL Ufficiale https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja
Descrizione Delete any element that is clicked
Dimensione del File 60.54 KB
Conteggio Installazioni 2,000
Versione Corrente 0.0.3
Ultimo Aggiornamento 2016-02-01
Data di Pubblicazione 2016-02-01
Valutazione 3.67/5 Totale 6 Valutazioni
Sviluppatore skeys apps
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}