Remove Element

Creates a contextual menu item to remove an element from the DOM

Что такое Remove Element?

Remove Element - это расширение Chrome, разработанное https://weilstreet.com, и его основная функция - "Creates a contextual menu item to remove an element from the DOM".

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

screenshot

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

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

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

                        Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary.

After installation you must reload any open pages for the extension to work.                    

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

Название Remove Element Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
Официальный URL https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho
Описание Creates a contextual menu item to remove an element from the DOM
Размер файла 6.35 KB
Количество установок 2,523
Текущая Версия 1.0.2
Последнее Обновление 2018-09-05
Дата публикации 2018-09-04
Рейтинг 3.94/5 Всего 32 оценок
Разработчик https://weilstreet.com
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Element",
    "version": "1.0.2",
    "description": "Creates a contextual menu item to remove an element from the DOM",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove.js"
            ]
        }
    ]
}