elementZapper

Disappear at once!

什么是elementZapper?

elementZapper是由http://www.dsebastien.net开发的Chrome扩展程序,该扩展的主要功能是“Disappear at once!”。

扩展截图

screenshot
screenshot

下载elementZapper扩展crx文件

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

扩展使用说明

                        This extension allows you to easily remove elements from Web pages.

Let's say that a gigantic cat image is bothering you (though you find it lovely) on some Website. You want it gone? Then right click on it, select "Zap!" and there you have it, gone!

The same applies to selections that you make on pages; just select a bunch of paragraphs, images, etc, right click, select "Zap!" and they're gone.                    

扩展基本信息

名称 elementZapper elementZapper
ID efeljanahmlnjhckmohcfbgkfdjdmnog
官方URL https://chrome.google.com/webstore/detail/elementzapper/efeljanahmlnjhckmohcfbgkfdjdmnog
简介 Disappear at once!
文件大小 18.52 KB
安装次数 459
当前版本 1.1
更新时间 2013-05-13
上架时间 2013-05-13
评分 2.33/5 共3次评分
开发者 http://www.dsebastien.net
付费类型 free
扩展官网 http://www.dsebastien.net
帮助页面URL https://github.com/dsebastien/elementZapper
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "elementZapper",
    "description": "Disappear at once!",
    "version": "1.1",
    "icons": {
        "128": "zap_128.png",
        "64": "zap_64.png",
        "32": "zap_32.png",
        "16": "zap_16.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}