colorexa

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

什麼是colorexa?

colorexa是由Rafael Bardini開發的Chrome擴展程式,該擴展的主要功能是“Quickly lookup for a color by typing or highlighting its hexadecimal code.”。

擴展截圖

screenshot
screenshot
screenshot

下載colorexa擴展crx文件

下載colorexa擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 colorexa colorexa
ID ldpbmphkljpjidkjjcogjeblepgbnlop
官方網址 https://chromewebstore.google.com/detail/colorexa/ldpbmphkljpjidkjjcogjeblepgbnlop
簡介 Quickly lookup for a color by typing or highlighting its hexadecimal code.
檔案大小 18.58 KB
安裝次數 78
目前版本 2.0.0
更新時間 2022-02-20
上架時間 2013-06-24
評分 5.00/5 共 3 次評分
開發者 Rafael Bardini
電子郵箱 [email protected]
付費類型 free
擴展官網 https://rbardini.github.io/colorexa/
支援的語言 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"
    }
}