Easy Color Picker

Grab colors from webpages anytime, instant color picker and personal color history.

Easy Color Picker란 무엇입니까?

Easy Color Picker은(는) https://smalldatatools.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Grab colors from webpages anytime, instant color picker and personal color history."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Easy Color Picker is a very nice tool for developers and designers to grab colors from web pages or select from the color-picker board. You can get the exact HEX/RGB/HSB value and keep the history of picked color.

Enjoy the ease of the colorpicker tool! Additionally, we've added some of our latest tools at the bottom for your extra convenience.

CHANGELOG
==========
Version 0.1.6 - 0.2.1
- Clean JS files and links
- Add & update the list of new tools

Version 0.1.2 - 0.1.5
- Grab colors from web pages
- Upgrade to extension V3 standard
- Add google analytics
- Add related new tools

Version 0.1.1 - 2021-08-18
- Instant color picker
- Get HEX/RGB/HSB values
- History of picked color                    

확장 프로그램 기본 정보

이름 Easy Color Picker Easy Color Picker
ID bgahcehknhgmjoggmkibghafppcfoaci
공식 URL https://chromewebstore.google.com/detail/easy-color-picker/bgahcehknhgmjoggmkibghafppcfoaci
설명 Grab colors from webpages anytime, instant color picker and personal color history.
파일 크기 110 KB
설치 횟수 10,000
현재 버전 0.2.1
최근 업데이트 2024-03-03
출시 날짜 2020-08-24
평점 4.80/5 총 10 개의 평점
개발자 https://smalldatatools.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.smalldatatools.com
도움말 페이지 URL https://www.smalldatatools.com/contact-us.php
개인정보 보호 정책 페이지 URL https://www.smalldatatools.com/privacy-policy.php
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Easy Color Picker",
    "description": "Grab colors from webpages anytime, instant color picker and personal color history.",
    "version": "0.2.1",
    "action": {
        "default_icon": "images\/logo.png",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "images\/logo.png",
        "48": "images\/logo.png",
        "128": "images\/logo.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "service_worker": "\/js\/background.js"
    },
    "commands": {
        "activate": {
            "description": "Activate picking color from web page",
            "suggested_key": {
                "default": "Alt+P"
            }
        }
    }
}