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
Eメール [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
}