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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}