RemoveElement

Remove HTML elements from the right-click context menu

Что такое RemoveElement?

RemoveElement - это расширение Chrome, разработанное sa1hon, и его основная функция - "Remove HTML elements from the right-click context menu".

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

screenshot

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

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

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

                        More easily remove elements without opening developer tools.

Right-click over the HTML element you want to delete.
You can view the tag name and size in the context menu.
And all you have to do is click it.                    

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

Название RemoveElement RemoveElement
ID jjhnenbbbbgojdbealmpdkmbkbnmeimf
Официальный URL https://chromewebstore.google.com/detail/removeelement/jjhnenbbbbgojdbealmpdkmbkbnmeimf
Описание Remove HTML elements from the right-click context menu
Размер файла 11.65 KB
Количество установок 94
Текущая Версия 0.0.6
Последнее Обновление 2023-03-02
Дата публикации 2019-12-29
Разработчик sa1hon
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/saihon/remove-element
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RemoveElement",
    "version": "0.0.6",
    "description": "Remove HTML elements from the right-click context menu",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/removeElement.js"
            ]
        }
    ],
    "manifest_version": 2
}