Colorify

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

Colorify là gì?

Colorify là một tiện ích mở rộng Chrome được phát triển bởi https://jamesmit.dev, và tính năng chính của nó là "Changes the hue of words to the color they're naming.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Colorify

Tải xuống các tệp mở rộng Colorify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Colorify Colorify
ID gkfgdccfjiaokigodbfmgbdifbemopdb
URL Chính Thức https://chromewebstore.google.com/detail/colorify/gkfgdccfjiaokigodbfmgbdifbemopdb
Mô tả Changes the hue of words to the color they're naming.
Kích Thước Tệp 27.63 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2023-03-21
Ngày Phát Hành 2020-07-01
Nhà Phát Triển https://jamesmit.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/JamesMitofsky/Colorify-Extension
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}