Vanishing Wand

Make annoying page elements magically disappear!

Что такое Vanishing Wand?

Vanishing Wand - это расширение Chrome, разработанное https://elliotplant.com, и его основная функция - "Make annoying page elements magically disappear!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Vanishing Wand

Скачайте файлы расширений Vanishing Wand в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Vanishing Wand Vanishing Wand
ID dmngnclhpbcedbbiplfcdijnimijakdd
Официальный URL https://chromewebstore.google.com/detail/vanishing-wand/dmngnclhpbcedbbiplfcdijnimijakdd
Описание Make annoying page elements magically disappear!
Размер файла 35.02 KB
Количество установок 495
Текущая Версия 1.1.0
Последнее Обновление 2017-09-16
Дата публикации 2017-09-16
Рейтинг 3.50/5 Всего 10 оценок
Разработчик https://elliotplant.com
Тип оплаты free
Поддерживаемые языки 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"
        ]
    }
}