colorexa

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

Qu'est-ce que colorexa ?

colorexa est une extension Chrome développée par Rafael Bardini, et sa fonction principale est "Quickly lookup for a color by typing or highlighting its hexadecimal code.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

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

Téléchargez les fichiers d'extension colorexa 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

                        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.                    

Informations de Base sur l'Extension

Nom colorexa colorexa
ID ldpbmphkljpjidkjjcogjeblepgbnlop
URL Officiel https://chromewebstore.google.com/detail/colorexa/ldpbmphkljpjidkjjcogjeblepgbnlop
Description Quickly lookup for a color by typing or highlighting its hexadecimal code.
Taille du Fichier 18.58 KB
Nombre d'Installations 78
Version Actuelle 2.0.0
Dernière Mise à Jour 2022-02-20
Date de Publication 2013-06-24
Évaluation 5.00/5 Total 3 Évaluations
Développeur Rafael Bardini
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://rbardini.github.io/colorexa/
Langues Prises en Charge 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"
    }
}