Remove Element

This extension will remove any element

什么是Remove Element?

Remove Element是由mnetzer开发的Chrome扩展程序,该扩展的主要功能是“This extension will remove any element”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Remove Element扩展crx文件

下载Remove Element扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
官方URL https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
简介 This extension will remove any element
文件大小 150 KB
安装次数 81
当前版本 1.0
更新时间 2021-02-02
上架时间 2021-02-02
开发者 mnetzer
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/moishinetzer/remove-element
支持的语言 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"
        }
    ]
}