Colorify

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

Qu'est-ce que Colorify ?

Colorify est une extension Chrome développée par https://jamesmit.dev, et sa fonction principale est "Changes the hue of words to the color they're naming.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Colorify

Téléchargez les fichiers d'extension Colorify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Colorify Colorify
ID gkfgdccfjiaokigodbfmgbdifbemopdb
URL Officiel https://chromewebstore.google.com/detail/colorify/gkfgdccfjiaokigodbfmgbdifbemopdb
Description Changes the hue of words to the color they're naming.
Taille du Fichier 27.63 KB
Nombre d'Installations 18
Version Actuelle 2.0.0
Dernière Mise à Jour 2023-03-21
Date de Publication 2020-07-01
Développeur https://jamesmit.dev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/JamesMitofsky/Colorify-Extension
Langues Prises en Charge 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"
    }
}