Deletion Prank

Delete any element that is clicked

Co to jest Deletion Prank?

Deletion Prank to rozszerzenie Chrome opracowane przez skeys apps, a jego główną funkcją jest „Delete any element that is clicked”.

Pobierz plik CRX rozszerzenia Deletion Prank

Pobierz pliki rozszerzeń Deletion Prank w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Deletion Prank Deletion Prank
ID fbepklogcpfkgbfcoinahppdebnahdja
Oficjalny URL https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja
Opis Delete any element that is clicked
Rozmiar pliku 60.54 KB
Liczba instalacji 2,000
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2016-02-01
Data Publikacji 2016-02-01
Ocena 3.67/5 Łącznie 6 Oceny
Deweloper skeys apps
Typ Płatności free
Obsługiwane Języki 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"
    ]
}