Get colors

Helps to pick best colors for webpage by changing webpage colors

Get colorsとは何ですか?

Get colorsはjanetjhurley2xx65によって開発されたChromeの拡張機能で、その主な機能は「Helps to pick best colors for webpage by changing webpage colors」です。

拡張機能のスクリーンショット

screenshot

Get colors拡張機能のCRXファイルをダウンロード

Get colors拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        1)open web page example : en.wikipedia.org/wiki/Main_Page
2)click on extension icon to see default popup html
3)change color values  and pick right color for your webpage
4)reload tab if it does not work and try again.                    

拡張機能の基本情報

名前 Get colors Get colors
ID ddbdapfmebdgkjkjgddapklpghceojmb
公式URL https://chrome.google.com/webstore/detail/get-colors/ddbdapfmebdgkjkjgddapklpghceojmb
説明 Helps to pick best colors for webpage by changing webpage colors
ファイルサイズ 50.35 KB
インストール数 10,000
現在のバージョン 0.0.0.1
最終更新日 2022-07-11
公開日 2022-07-11
開発者 janetjhurley2xx65
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Get colors",
    "version": "0.0.0.1",
    "description": "Helps to pick best colors for webpage by changing webpage colors",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ]
}