Instant Color Picker
Quickly select colors from website or colorpicker board anytime.
Instant Color Picker란 무엇입니까?
Instant Color Picker은(는) https://smalldatatools.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly select colors from website or colorpicker board anytime."입니다.
확장 프로그램 스크린샷
Instant Color Picker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Instant Color Picker allows you to grab the color from webpage and copy it in any format. This extension has a simple and user-friendly interface. It is very simple to use, just try it! The main features are: ⭐Pick a color from current page ⭐Pick a color from colorpicker board ⭐Support multiple formats: HEX, RGB, HSV ⭐Keep last-picked color in record for later use CHANGELOG ========== Version 0.1.3 - 0.1.4 - Add google analytics - Update tab permission Version 0.1.1 - 0.1.2 - Fix occasional picker failures Version 0.1.0 - 2022-10-10 - Grab colors from web pages - Get HEX/RGB/HSB values - History of picked color
확장 프로그램 기본 정보
이름 | Instant Color Picker |
ID | pokogggedpiedkakbmlinhcjifihhkec |
공식 URL | https://chromewebstore.google.com/detail/instant-color-picker/pokogggedpiedkakbmlinhcjifihhkec |
설명 | Quickly select colors from website or colorpicker board anytime. |
파일 크기 | 84.72 KB |
설치 횟수 | 275 |
현재 버전 | 0.1.4 |
최근 업데이트 | 2024-01-19 |
출시 날짜 | 2022-09-21 |
개발자 | 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": "Instant Color Picker", "description": "Quickly select colors from website or colorpicker board anytime.", "version": "0.1.4", "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 color picker from webpage", "suggested_key": { "default": "Alt+P" } } } } |