Color Dropper
An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.
Color Dropper란 무엇입니까?
Color Dropper은(는) https://colordropper.xyz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An easy to use eyedropper tool that automatically copies the Hex Code of the desired color."입니다.
확장 프로그램 스크린샷
Color Dropper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Press the dropper icon on the menu bar or use keyboard shortcut and then click on any part of your browser screen. Automatically capture (and copy) the hex code to your clipboard. A small tooltip shows what color you currently have selected and, when clicked, will tell you what hex code is successfully copied. Easy to use. Copies color in just one click. Extremely useful for developers and artists. ☆ Default keyboard shortcut to activate is Ctrl+Shift+E (Cmd+Shift+E on Mac) ☆ ☆ Shortcut can be changed by navigating to chrome://extensions/shortcuts ☆ Won't work on new tab page, Chrome settings pages, and the Chrome Web Store. Works on the latest versions of Chrome.
확장 프로그램 기본 정보
이름 | Color Dropper |
ID | cbagleaaaocejmdeichhdkmjebpljckh |
공식 URL | https://chromewebstore.google.com/detail/color-dropper/cbagleaaaocejmdeichhdkmjebpljckh |
설명 | An easy to use eyedropper tool that automatically copies the Hex Code of the desired color. |
파일 크기 | 51.03 KB |
설치 횟수 | 63,639 |
현재 버전 | 1.3.4 |
최근 업데이트 | 2021-08-25 |
출시 날짜 | 2020-06-25 |
평점 | 4.49/5 총 35 개의 평점 |
개발자 | https://colordropper.xyz |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://adamgonen.com |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Color Dropper", "version": "1.3.4", "description": "An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.", "homepage_url": "https:\/\/colordropper.xyz", "background": { "page": "background.html", "persistent": true }, "browser_action": { "default_icon": { "48": "assets\/48-color.png", "128": "assets\/128-color.png" } }, "web_accessible_resources": [ "assets\/*" ], "permissions": [ "activeTab" ], "icons": { "48": "assets\/48-color.png", "128": "assets\/128-color.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+E" } } } } |