Colorify

Changes the hue of words to the color they're naming.

ما هو Colorify؟

Colorify هو إضافة Chrome تم تطويرها بواسطة https://jamesmit.dev، والميزة الرئيسية لها هي "Changes the hue of words to the color they're naming.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Colorify

قم بتنزيل ملفات الامتداد Colorify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Does visiting websites make you feel like a character in The Giver? Let this extension be a token of salvation!

For any word which names a color, the hue of that word will automatically be changed to match the color it's naming.



Major Version History:
- 2.0.0: Performance update & upgrading to the 3rd generation of Google Extension's manifest system.
- 1.0.0: Replace manual search functionality with Mark.js, add contrast detection for accessibility, & expand color dictionary to every CSS-named color.
- 0.1.2: Search HTML as a string, ignoring attribute values and injecting stylized words where words naming colors existed.                    

معلومات أساسية عن التمديد

الاسم Colorify Colorify
ID gkfgdccfjiaokigodbfmgbdifbemopdb
عنوان URL الرسمي https://chromewebstore.google.com/detail/colorify/gkfgdccfjiaokigodbfmgbdifbemopdb
الوصف Changes the hue of words to the color they're naming.
حجم الملف 27.63 KB
عدد التثبيتات 18
النسخة الحالية 2.0.0
آخر تحديث 2023-03-21
تاريخ النشر 2020-07-01
المطور https://jamesmit.dev
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/JamesMitofsky/Colorify-Extension
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colorify",
    "version": "2.0.0",
    "manifest_version": 3,
    "description": "Changes the hue of words to the color they're naming.",
    "author": "James Tedesco",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "mark.js",
                "colors.js",
                "colorify.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "making words better since 2020"
    }
}