colorexa

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

Apa itu colorexa?

colorexa adalah ekstensi Chrome yang dikembangkan oleh Rafael Bardini, dan fitur utamanya adalah "Quickly lookup for a color by typing or highlighting its hexadecimal code.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi colorexa

Unduh file ekstensi colorexa dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama colorexa colorexa
ID ldpbmphkljpjidkjjcogjeblepgbnlop
URL Resmi https://chromewebstore.google.com/detail/colorexa/ldpbmphkljpjidkjjcogjeblepgbnlop
Deskripsi Quickly lookup for a color by typing or highlighting its hexadecimal code.
Ukuran File 18.58 KB
Jumlah Instalasi 78
Versi Saat Ini 2.0.0
Terakhir Diperbarui 2022-02-20
Tanggal Publikasi 2013-06-24
Penilaian 5.00/5 Total 3 Penilaian
Pengembang Rafael Bardini
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://rbardini.github.io/colorexa/
Bahasa yang Didukung 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"
    }
}