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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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