Web Color Filter

Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.

Web Color Filter란 무엇입니까?

Web Color Filter은(는) Bhupesh Singh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Web Color Filter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        # Note : After installing the extension, reload any open tabs or restart the chrome browser for the extension to work.

∘More than 30 filters to apply.

∘Turn any website to dark mode by adjusting the invert option or choose a filter which suits you.

∘Photoshop like effects for your websites.

∘Filter options like Turbulence and X-rays change the look of the web page and make them look unique

∘Use Hue Rotate to change the website color.

∘Easily reset the filters if not satisfied                    

확장 프로그램 기본 정보

이름 Web Color Filter Web Color Filter
ID njnaggoebacjnbklkcccmbnpfmeagcmp
공식 URL https://chromewebstore.google.com/detail/web-color-filter/njnaggoebacjnbklkcccmbnpfmeagcmp
설명 Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.
파일 크기 368 KB
설치 횟수 7,000
현재 버전 4
최근 업데이트 2023-11-06
출시 날짜 2022-03-23
평점 4.00/5 총 10 개의 평점
개발자 Bhupesh Singh
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://direct.me/bhupesh
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Color Filter",
    "version": "4",
    "manifest_version": 3,
    "description": "Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo\/logo-16.png",
            "32": "\/images\/logo\/logo-32.png",
            "48": "\/images\/logo\/logo-48.png",
            "128": "\/images\/logo\/logo-128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo\/logo-16.png",
        "32": "\/images\/logo\/logo-32.png",
        "48": "\/images\/logo\/logo-48.png",
        "128": "\/images\/logo\/logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "myScript.js"
            ],
            "all_frames": true
        }
    ],
    "options_page": "about.html",
    "web_accessible_resources": [
        {
            "resources": [
                "filters.xml"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}