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ファイルをダウンロード

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

拡張機能の使用方法

                        # 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
Eメール [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"
    ]
}