Color Grab

Steal beautiful colors from Dribbble easily.

Color Grab란 무엇입니까?

Color Grab은(는) tekeste.kidanu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Steal beautiful colors from Dribbble easily."입니다.

확장 프로그램 스크린샷

Color Grab 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension makes copying colors from Dribbble shots as easy a single click. 
Click your favorite color from the chips next to a shot and the Hex code is available on your clipboard!                    

확장 프로그램 기본 정보

이름 Color Grab Color Grab
ID aiamoeimgpbjfhmagepggjdickchgpfd
공식 URL https://chromewebstore.google.com/detail/color-grab/aiamoeimgpbjfhmagepggjdickchgpfd
설명 Steal beautiful colors from Dribbble easily.
파일 크기 46.97 KB
설치 횟수 698
현재 버전 1.0
최근 업데이트 2018-07-06
출시 날짜 2018-07-06
평점 5.00/5 총 1 개의 평점
개발자 tekeste.kidanu
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Color Grab",
    "description": "Steal beautiful colors from Dribbble easily.",
    "version": "1.0",
    "homepage_url": "https:\/\/twitter.com\/iamtekeste",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "128-icon.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/dribbble.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/dribbble.com\/*"
            ],
            "css": [
                "tippy.css",
                "content.css"
            ],
            "js": [
                "tippy.min.js",
                "bundle.js"
            ]
        }
    ]
}