colorexa

Quickly lookup for a color by typing or highlighting its hexadecimal code.

O que é colorexa?

colorexa é uma extensão do Chrome desenvolvida por Rafael Bardini, e sua principal característica é "Quickly lookup for a color by typing or highlighting its hexadecimal code.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão colorexa

Baixe arquivos de extensão colorexa 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

                        A simple tool to lookup for colors specified as an RGB triplet in hexadecimal format. The background of the pop-up bubble refreshes automatically to represent the color typed in its text field or highlighted in the page. Supports full (six-digits) and abbreviated (three-digit) hexadecimal color codes.

Useful when you want to quickly check a color found in the source code of a page or stylesheet.

Visit the extension's website for a live preview.                    

Informações Básicas da Extensão

Nome colorexa colorexa
ID ldpbmphkljpjidkjjcogjeblepgbnlop
URL Oficial https://chromewebstore.google.com/detail/colorexa/ldpbmphkljpjidkjjcogjeblepgbnlop
Descrição Quickly lookup for a color by typing or highlighting its hexadecimal code.
Tamanho do Arquivo 18.58 KB
Contagem de Instalações 78
Versão Atual 2.0.0
Última Atualização 2022-02-20
Data de Publicação 2013-06-24
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Rafael Bardini
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://rbardini.github.io/colorexa/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "colorexa",
    "version": "2.0.0",
    "description": "Quickly lookup for a color by typing or highlighting its hexadecimal code.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/content-script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "colorexa",
        "default_popup": "popup.html"
    }
}