Hex Color picker for Chrome™

Pick colors from any web pages and get the HEX color code with fast and easily.

Hex Color picker for Chrome™란 무엇입니까?

Hex Color picker for Chrome™은(는) https://image-color-picker.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pick colors from any web pages and get the HEX color code with fast and easily."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Hex Color picker for Chrome™ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Hex Color picker is a simple chrome extension which enables you to pick any color from the webpage and your screen. And the colors will be save in the list of selected colors.

You can copy the Hex code to the clipboard with fast and easily.

What is Hex color code?
HTML color code or Hex code hexadecimal triplets representing the colors red, green, and blue (#RRGGBB). 

For example, in the color red, the color code is #FF0000, which is '255' red, '0' green, and '0' blue. There are 16,777,216 possible HTML color codes.

Visit our website for more useful tools for designers.

Thank you for using this tool.                    

확장 프로그램 기본 정보

이름 Hex Color picker for Chrome™ Hex Color picker for Chrome™
ID emcdddpfpajfemcjggaodbdecipdeeon
공식 URL https://chromewebstore.google.com/detail/hex-color-picker-for-chro/emcdddpfpajfemcjggaodbdecipdeeon
설명 Pick colors from any web pages and get the HEX color code with fast and easily.
파일 크기 516 KB
설치 횟수 2,409
현재 버전 1.0
최근 업데이트 2022-09-25
출시 날짜 2022-09-24
평점 5.00/5 총 2 개의 평점
개발자 https://image-color-picker.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://image-color-picker.com/hex-code-picker
도움말 페이지 URL https://image-color-picker.com/contact
개인정보 보호 정책 페이지 URL https://www.image-color-picker.com/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hex Color picker for Chrome\u2122",
    "description": "Pick colors from any web pages and get the HEX color code with fast and easily.",
    "version": "1.0",
    "short_name": "Hex Color Picker",
    "manifest_version": 3,
    "action": {
        "default_title": "Hex Color picker",
        "default_icon": "icon.png",
        "default_popup": ".\/Popup.html"
    },
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/contentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        ""
    ]
}