WhatColor

The easiest way to identify colors on web pages.

什麼是WhatColor?

WhatColor是由https://milhen.ch開發的Chrome擴展程式,該擴展的主要功能是“The easiest way to identify colors on web pages.”。

擴展截圖

screenshot
screenshot
screenshot

下載WhatColor擴展crx文件

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

擴展使用說明

                        This chrome extension has been written to demonstrate how to execute code within the current page after a chrome extension button is pressed, as discussed in my article;

https://medium.com/p/f951315854e9

The basic premise is to parse all css stylesheet files that are linked to the current page and add a sidebar that lists all of the colors referenced within the stylesheets.

# Caveats
* For demo purposes only (supporting the atricle).
* Inline colors are not displayed.                    

擴展基本資訊

名稱 WhatColor WhatColor
ID begomjapoppkfcdcaindehabfglbfkcn
官方網址 https://chromewebstore.google.com/detail/whatcolor/begomjapoppkfcdcaindehabfglbfkcn
簡介 The easiest way to identify colors on web pages.
檔案大小 32.14 KB
安裝次數 1,380
目前版本 1.0.2
更新時間 2022-09-08
上架時間 2013-10-29
評分 2.00/5 共 6 次評分
開發者 https://milhen.ch
電子郵箱 [email protected]
付費類型 free
擴展官網 https://medium.com/p/f951315854e9
說明頁面URL https://medium.com/p/f951315854e9
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js",
            "asyncTracking.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/dropper48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*",
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js",
                "content\/js\/plugins.js"
            ]
        }
    ],
    "description": "The easiest way to identify colors on web pages.",
    "icons": {
        "128": "images\/dropper128.png",
        "48": "images\/dropper48.png",
        "16": "images\/dropper16.png"
    },
    "manifest_version": 2,
    "name": "WhatColor",
    "version": "1.0.2",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "content\/coordinator.js",
        "content\/*"
    ]
}