Filter Remover

Bring color back to website. In case of async content loading. click on icon again to run script manually.

Filter Removerとは何ですか?

Filter RemoverはPesticideによって開発されたChromeの拡張機能で、その主な機能は「Bring color back to website. In case of async content loading. click on icon again to run script manually.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Bring color back to website. It remove filter: grayscale automatically when page load. In case of asynchronous content loading, please click icon again to run it manually.

Support old chrome version with webkit.Filter                    

拡張機能の基本情報

名前 Filter Remover Filter Remover
ID bfebennjaidcjckomeokmaeieoidhieb
公式URL https://chromewebstore.google.com/detail/filter-remover/bfebennjaidcjckomeokmaeieoidhieb
説明 Bring color back to website. In case of async content loading. click on icon again to run script manually.
ファイルサイズ 19.7 KB
インストール数 80
現在のバージョン 1.1.1
最終更新日 2016-10-19
公開日 2016-10-19
評価 4.88/5 合計 8 レビュー
開発者 Pesticide
支払い方法 free
対応言語 th
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Filter Remover",
    "description": "Bring color back to website. In case of async content loading. click on icon again to run script manually.",
    "version": "1.1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "click here to run color script manually."
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}