Deletion Prank

Delete any element that is clicked

Wat is Deletion Prank?

Deletion Prank is een Chrome-extensie ontwikkeld door skeys apps, en de belangrijkste functie is "Delete any element that is clicked".

Download het CRX-bestand van de extensie Deletion Prank

Download Deletion Prank-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Deletion Prank Deletion Prank
ID fbepklogcpfkgbfcoinahppdebnahdja
Officiële URL https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja
Beschrijving Delete any element that is clicked
Bestandsgrootte 60.54 KB
Aantal Installaties 2,000
Huidige Versie 0.0.3
Laatst Bijgewerkt 2016-02-01
Publicatiedatum 2016-02-01
Beoordeling 3.67/5 Totaal 6 Beoordelingen
Ontwikkelaar skeys apps
Betalingswijze free
Ondersteunde Talen 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"
    ]
}