RemoveElement

Remove HTML elements from the right-click context menu

什么是RemoveElement?

RemoveElement是由sa1hon开发的Chrome扩展程序,该扩展的主要功能是“Remove HTML elements from the right-click context menu”。

扩展截图

screenshot

下载RemoveElement扩展crx文件

下载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
}