Vanishing Wand

Make annoying page elements magically disappear!

Co to jest Vanishing Wand?

Vanishing Wand to rozszerzenie Chrome opracowane przez https://elliotplant.com, a jego główną funkcją jest „Make annoying page elements magically disappear!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Vanishing Wand

Pobierz pliki rozszerzeń Vanishing Wand 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

                        Vanishing Wand lets you remove annoying webpage elements by simply clicking on them. Just click the wand icon in the top left and then click the element you want to delete, and it will disappear from the page. To delete multiple elements, hold down the shift key and click on all the elements you want to remove.                    

Podstawowe informacje o rozszerzeniu

Nazwa Vanishing Wand Vanishing Wand
ID dmngnclhpbcedbbiplfcdijnimijakdd
Oficjalny URL https://chromewebstore.google.com/detail/vanishing-wand/dmngnclhpbcedbbiplfcdijnimijakdd
Opis Make annoying page elements magically disappear!
Rozmiar pliku 35.02 KB
Liczba instalacji 495
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2017-09-16
Data Publikacji 2017-09-16
Ocena 3.50/5 Łącznie 10 Oceny
Deweloper https://elliotplant.com
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Vanishing Wand",
    "version": "1.1.0",
    "description": "Make annoying page elements magically disappear!",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "wand.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}