removeanything

sometimes you just want to get rid of an element quickly

removeanythingとは何ですか?

removeanythingはzeyusによって開発されたChromeの拡張機能で、その主な機能は「sometimes you just want to get rid of an element quickly」です。

拡張機能のスクリーンショット

screenshot

removeanything拡張機能のCRXファイルをダウンロード

removeanything拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This is a really simple extension to remove any element from a page by right clicking.

This is useful if you want to hid an image, or an ad form an article, or popups that block a site unless you register, that kind of thing.                    

拡張機能の基本情報

名前 removeanything removeanything
ID gmlkkilfhaiefnbnbgbmoodkebnpicfj
公式URL https://chromewebstore.google.com/detail/removeanything/gmlkkilfhaiefnbnbgbmoodkebnpicfj
説明 sometimes you just want to get rid of an element quickly
ファイルサイズ 11.31 KB
インストール数 230
現在のバージョン 0.1.0
最終更新日 2015-02-16
公開日 2015-02-16
評価 3.17/5 合計 6 レビュー
開発者 zeyus
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://www.zeyus.com/
ヘルプページのURL https://github.com/zeyus/remove-anything
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "removeanything",
    "description": "sometimes you just want to get rid of an element quickly",
    "version": "0.1.0",
    "icons": {
        "128": "res\/icon128.png",
        "16": "res\/icon16.png",
        "48": "res\/icon48.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        ""
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}