GET WEB SITE THEME COLOR

It is intended to help you extract the color palette of any website. You can also check the usage rate of the extracted colors.

什麼是GET WEB SITE THEME COLOR?

GET WEB SITE THEME COLOR是由deren開發的Chrome擴展程式,該擴展的主要功能是“It is intended to help you extract the color palette of any website. You can also check the usage rate of the extracted colors.”。

擴展截圖

screenshot
screenshot
screenshot

下載GET WEB SITE THEME COLOR擴展crx文件

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

擴展使用說明

                        ■ Update✨
・2022/10/24
Fixed the problem that the background color cannot be obtained on some pages.

■ Features🚀
・Click the icon to see the theme colors used on the open website.
・You can know the background color and the text color.
・You can graph how much theme color is used.
・You can copy the clicked color code by clicking on the graph.

■ Notes⚠️
・Please refresh the screen of the website page that was open when you added or updated this extension.
・Some pages may not be available for security reasons.
・Color of Image cannot be acquired.

Thank you.                    

擴展基本資訊

名稱 GET WEB SITE THEME COLOR GET WEB SITE THEME COLOR
ID dbnbaoinihpfmkcmnlabklckngadaadm
官方網址 https://chromewebstore.google.com/detail/get-web-site-theme-color/dbnbaoinihpfmkcmnlabklckngadaadm
簡介 It is intended to help you extract the color palette of any website. You can also check the usage rate of the extracted colors.
檔案大小 153 KB
安裝次數 1,015
目前版本 1.2.1
更新時間 2022-10-26
上架時間 2021-06-27
評分 4.50/5 共 2 次評分
開發者 deren
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/deren2525/get-web-site-theme-color
支援的語言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_Name__",
    "version": "1.2.1",
    "description": "__MSG_Description__",
    "action": {
        "default_title": "__MSG_Name__",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "assets\/images\/icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content_scripts.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "assets\/images\/icon.png",
        "48": "assets\/images\/icon.png",
        "128": "assets\/images\/icon.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
    },
    "manifest_version": 3,
    "default_locale": "en"
}