any-color
Pick any pixel color from a web page
any-color란 무엇입니까?
any-color은(는) https://hankchiu.tw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pick any pixel color from a web page"입니다.
확장 프로그램 스크린샷
any-color 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A chrome extension let you pick up any pixel color from a web page. - Inspired from chrome devtool's color picker. - Toggle the color inspector by Alt+Shift+A. - Turn off the color inspector by ESC. - Click and copy the color hex. ## Why? Most of the color picker extensions have these drawbacks: - Most of them are aimed at picking DOM colors. Can not pick image colors. - Not efficient when I only want to pick colors. ## How to use Install the extension and toggle the color inspector by Alt+Shift+A. That's it. ## How it works Mainly it uses [captureVisibleTab](https://developer.chrome.com/extensions/tabs#method-captureVisibleTab) API to the take the page screenshot. The image data is rasterized and pixel colors are ready to use. ## License [ Apache2 License ](LICENSE) © [hankchiu.tw](https://hankchiu.tw)
확장 프로그램 기본 정보
이름 | any-color |
ID | cmehpadapglhhambdiafddpfjdngonba |
공식 URL | https://chromewebstore.google.com/detail/any-color/cmehpadapglhhambdiafddpfjdngonba |
설명 | Pick any pixel color from a web page |
파일 크기 | 227 KB |
설치 횟수 | 168 |
현재 버전 | 0.3.0 |
최근 업데이트 | 2020-11-25 |
출시 날짜 | 2020-06-23 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://hankchiu.tw |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://any-color.vercel.app |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "any-color", "short_name": "AnyColor", "version": "0.3.0", "manifest_version": 2, "description": "Pick any pixel color from a web page", "homepage_url": "https:\/\/github.com\/hankchiutw\/any-color", "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "background": { "scripts": [ "main.js" ], "persistent": false }, "browser_action": { "default_title": "Click or press Alt+Shift+A to launch AnyColor", "name": "Click to launch AnyColor" }, "permissions": [ "activeTab" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+A", "mac": "Alt+Shift+A" }, "description": "Toggle AnyColor" } }, "web_accessible_resources": [ "assets\/*" ] } |