colorexa

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

Wat is colorexa?

colorexa is een Chrome-extensie ontwikkeld door Rafael Bardini, en de belangrijkste functie is "Quickly lookup for a color by typing or highlighting its hexadecimal code.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie colorexa

Download colorexa-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam colorexa colorexa
ID ldpbmphkljpjidkjjcogjeblepgbnlop
Officiële URL https://chromewebstore.google.com/detail/colorexa/ldpbmphkljpjidkjjcogjeblepgbnlop
Beschrijving Quickly lookup for a color by typing or highlighting its hexadecimal code.
Bestandsgrootte 18.58 KB
Aantal Installaties 78
Huidige Versie 2.0.0
Laatst Bijgewerkt 2022-02-20
Publicatiedatum 2013-06-24
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Rafael Bardini
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://rbardini.github.io/colorexa/
Ondersteunde Talen 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"
    }
}