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"
            ]
        }
    ]
}