Remove Element

Remove an HTML element from the context menu (right-click).

Remove Element là gì?

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

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Remove Element 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

                        Remove Element allows you to remove any HTML element by right clicking the element and selecting "Remove Element" from the Chrome context menu.

Extremely simple and efficient code is available at https://github.com/atheiman/remove-element                    

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

Tên Remove Element Remove Element
ID jmmocdecnafloeaphiidpofionaifhjo
URL Chính Thức https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo
Mô tả Remove an HTML element from the context menu (right-click).
Kích Thước Tệp 178 KB
Số Lần Cài Đặt 363
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-09-03
Ngày Phát Hành 2015-09-02
Đánh Giá 2.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển atheimanksu
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "Remove an HTML element from the context menu (right-click).",
    "version": "1.0",
    "author": "Austin Heiman",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "images\/red-x-16.png",
        "48": "images\/red-x-48.png",
        "128": "images\/red-x-128.png"
    },
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}