Remove Element

This extension will remove any element

Что такое Remove Element?

Remove Element - это расширение Chrome, разработанное mnetzer, и его основная функция - "This extension will remove any element".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Have you ever wanted to blast any element on the page? This will do it. 100% Guaranteed to remove any element with a simple right click -> Remove Element. This works on iframes as well which basically means you can even get rid of elements inside video frames such as youtube vimeo and twitch! 

Also, this is open-source! So if you want to see how this was created check this out:
https://github.com/moishinetzer/remove-element                    

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

Название Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
Официальный URL https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
Описание This extension will remove any element
Размер файла 150 KB
Количество установок 81
Текущая Версия 1.0
Последнее Обновление 2021-02-02
Дата публикации 2021-02-02
Разработчик mnetzer
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/moishinetzer/remove-element
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "This extension will remove any element",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "background.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}