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 هو إضافة Chrome تم تطويرها بواسطة Bhupesh Singh، والميزة الرئيسية لها هي "Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Web Color Filter

قم بتنزيل ملفات الامتداد Web Color Filter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    ]
}