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
官方網址 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"
    ]
}