Remove Element

Creates a contextual menu item to remove an element from the DOM

什么是Remove Element?

Remove Element是由https://weilstreet.com开发的Chrome扩展程序,该扩展的主要功能是“Creates a contextual menu item to remove an element from the DOM”。

扩展截图

screenshot

下载Remove Element扩展crx文件

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

扩展使用说明

                        Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary.

After installation you must reload any open pages for the extension to work.                    

扩展基本信息

名称 Remove Element Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
官方URL https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho
简介 Creates a contextual menu item to remove an element from the DOM
文件大小 6.35 KB
安装次数 2,523
当前版本 1.0.2
更新时间 2018-09-05
上架时间 2018-09-04
评分 3.94/5 共32次评分
开发者 https://weilstreet.com
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Element",
    "version": "1.0.2",
    "description": "Creates a contextual menu item to remove an element from the DOM",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove.js"
            ]
        }
    ]
}