Colorify

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

O que é Colorify?

Colorify é uma extensão do Chrome desenvolvida por https://jamesmit.dev, e sua principal característica é "Changes the hue of words to the color they're naming.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Colorify

Baixe arquivos de extensão Colorify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Colorify Colorify
ID gkfgdccfjiaokigodbfmgbdifbemopdb
URL Oficial https://chromewebstore.google.com/detail/colorify/gkfgdccfjiaokigodbfmgbdifbemopdb
Descrição Changes the hue of words to the color they're naming.
Tamanho do Arquivo 27.63 KB
Contagem de Instalações 18
Versão Atual 2.0.0
Última Atualização 2023-03-21
Data de Publicação 2020-07-01
Desenvolvedor https://jamesmit.dev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/JamesMitofsky/Colorify-Extension
Idiomas Suportados 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"
    }
}