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
官方網址 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
}