elementZapper

Disappear at once!

Co to jest elementZapper?

elementZapper to rozszerzenie Chrome opracowane przez http://www.dsebastien.net, a jego główną funkcją jest „Disappear at once!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia elementZapper

Pobierz pliki rozszerzeń elementZapper 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 allows you to easily remove elements from Web pages.

Let's say that a gigantic cat image is bothering you (though you find it lovely) on some Website. You want it gone? Then right click on it, select "Zap!" and there you have it, gone!

The same applies to selections that you make on pages; just select a bunch of paragraphs, images, etc, right click, select "Zap!" and they're gone.                    

Podstawowe informacje o rozszerzeniu

Nazwa elementZapper elementZapper
ID efeljanahmlnjhckmohcfbgkfdjdmnog
Oficjalny URL https://chrome.google.com/webstore/detail/elementzapper/efeljanahmlnjhckmohcfbgkfdjdmnog
Opis Disappear at once!
Rozmiar pliku 18.52 KB
Liczba instalacji 459
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2013-05-13
Data Publikacji 2013-05-13
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper http://www.dsebastien.net
Typ Płatności free
Strona Rozszerzenia http://www.dsebastien.net
Adres URL Strony Pomocy https://github.com/dsebastien/elementZapper
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "elementZapper",
    "description": "Disappear at once!",
    "version": "1.1",
    "icons": {
        "128": "zap_128.png",
        "64": "zap_64.png",
        "32": "zap_32.png",
        "16": "zap_16.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}