Colorify

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

什麼是Colorify?

Colorify是由https://jamesmit.dev開發的Chrome擴展程式,該擴展的主要功能是“Changes the hue of words to the color they're naming.”。

擴展截圖

screenshot
screenshot
screenshot

下載Colorify擴展crx文件

下載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
官方網址 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"
    }
}