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.”。
扩展截图
下载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 |
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" ] } |