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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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