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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}