Deletion Prank

Delete any element that is clicked

Qu'est-ce que Deletion Prank ?

Deletion Prank est une extension Chrome développée par skeys apps, et sa fonction principale est "Delete any element that is clicked".

Télécharger le fichier CRX de l'extension Deletion Prank

Téléchargez les fichiers d'extension Deletion Prank au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Deletion Prank Deletion Prank
ID fbepklogcpfkgbfcoinahppdebnahdja
URL Officiel https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja
Description Delete any element that is clicked
Taille du Fichier 60.54 KB
Nombre d'Installations 2,000
Version Actuelle 0.0.3
Dernière Mise à Jour 2016-02-01
Date de Publication 2016-02-01
Évaluation 3.67/5 Total 6 Évaluations
Développeur skeys apps
Type de Paiement free
Langues Prises en Charge 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"
    ]
}