Color and Fonts Extractor

This extension is meant to help you extract the color palette and font of any website

什麼是Color and Fonts Extractor?

Color and Fonts Extractor是由nh2amine開發的Chrome擴展程式,該擴展的主要功能是“This extension is meant to help you extract the color palette and font of any website”。

擴展截圖

screenshot

下載Color and Fonts Extractor擴展crx文件

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

擴展使用說明

                        The real purpose of this extension is to simplify the extraction of the color palette and fonts names of any website.

if you are a designer or front-end developer, you can easily extract copy and paste the color palette and the font names used in any website with just 2 clicks. 

You can than copy and past as css varibles in your css/scss files.

You can also extract each color individually in RGB(A), Hex or HSL format.                    

擴展基本資訊

名稱 Color and Fonts Extractor Color and Fonts Extractor
ID jbnjlcapocfdcoieepfpmcjfjhjdfibo
官方網址 https://chromewebstore.google.com/detail/color-and-fonts-extractor/jbnjlcapocfdcoieepfpmcjfjhjdfibo
簡介 This extension is meant to help you extract the color palette and font of any website
檔案大小 182 KB
安裝次數 2,878
目前版本 1.0.4
更新時間 2020-06-10
上架時間 2020-06-09
評分 1.00/5 共 4 次評分
開發者 nh2amine
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Color and Fonts Extractor",
    "version": "1.0.4",
    "description": "This extension is meant to help you extract the color palette and font of any website",
    "manifest_version": 2,
    "icons": {
        "16": "icon_16.png",
        "24": "icon_24.png",
        "32": "icon_32.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon_16.png",
            "24": "icon_24.png",
            "32": "icon_32.png",
            "128": "icon_128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "extract_css.js"
            ]
        }
    ]
}