RemoveElement

Remove HTML elements from the right-click context menu

RemoveElement là gì?

RemoveElement là một tiện ích mở rộng Chrome được phát triển bởi sa1hon, và tính năng chính của nó là "Remove HTML elements from the right-click context menu".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng RemoveElement

Tải xuống các tệp mở rộng RemoveElement dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên RemoveElement RemoveElement
ID jjhnenbbbbgojdbealmpdkmbkbnmeimf
URL Chính Thức https://chromewebstore.google.com/detail/removeelement/jjhnenbbbbgojdbealmpdkmbkbnmeimf
Mô tả Remove HTML elements from the right-click context menu
Kích Thước Tệp 11.65 KB
Số Lần Cài Đặt 94
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2023-03-02
Ngày Phát Hành 2019-12-29
Nhà Phát Triển sa1hon
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/saihon/remove-element
Ngôn Ngữ Được Hỗ Trợ 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
}