Remove Element

This extension will remove any element

Remove Element là gì?

Remove Element là một tiện ích mở rộng Chrome được phát triển bởi mnetzer, và tính năng chính của nó là "This extension will remove any element".

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

screenshot
screenshot
screenshot
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

                        Have you ever wanted to blast any element on the page? This will do it. 100% Guaranteed to remove any element with a simple right click -> Remove Element. This works on iframes as well which basically means you can even get rid of elements inside video frames such as youtube vimeo and twitch! 

Also, this is open-source! So if you want to see how this was created check this out:
https://github.com/moishinetzer/remove-element                    

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

Tên Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
URL Chính Thức https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
Mô tả This extension will remove any element
Kích Thước Tệp 150 KB
Số Lần Cài Đặt 81
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-02-02
Ngày Phát Hành 2021-02-02
Nhà Phát Triển mnetzer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/moishinetzer/remove-element
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "This extension will remove any element",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "background.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}