Tailwind Eye Dropper
Tailwind Eye Dropper is an open source extension that allows you to pick colors from web pages and convert them to a Tailwind preset
Tailwind Eye Dropper란 무엇입니까?
Tailwind Eye Dropper은(는) tedisagolli에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tailwind Eye Dropper is an open source extension that allows you to pick colors from web pages and convert them to a Tailwind preset"입니다.
확장 프로그램 스크린샷
Tailwind Eye Dropper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Pick a color from a page, convert it to the closest Tailwind preset, and automatically copy it to your clipboard. Forked from http://eye-dropper.kepi.cz/ The original extension is great and I recommend supporting the author! I added: 1. Convert to Tailwind 2. Automatically copy to clipboard Icon made by Freepik (https://www.freepik.com) from www.flaticon.com
확장 프로그램 기본 정보
이름 | Tailwind Eye Dropper |
ID | nilniojlolabjlhbkhejlokeffohkanp |
공식 URL | https://chromewebstore.google.com/detail/tailwind-eye-dropper/nilniojlolabjlhbkhejlokeffohkanp |
설명 | Tailwind Eye Dropper is an open source extension that allows you to pick colors from web pages and convert them to a Tailwind preset |
파일 크기 | 183 KB |
설치 횟수 | 256 |
현재 버전 | 1.01 |
최근 업데이트 | 2021-02-08 |
출시 날짜 | 2021-02-02 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | tedisagolli |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://tedis.me |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tailwind Eye Dropper", "version": "1.01", "version_name": "1.01", "manifest_version": 2, "description": "Tailwind Eye Dropper is an open source extension that allows you to pick colors from web pages and convert them to a Tailwind preset", "minimum_chrome_version": "49", "background": { "page": "background.html", "persistent": true }, "options_page": "options.html", "icons": { "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "browser_action": { "default_icon": { "19": "img\/icon_19.png", "38": "img\/icon_38.png" }, "default_title": "Eye Dropper", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "clipboardWrite" ], "web_accessible_resources": [ "inc\/jquery-2.1.0.min.js", "inc\/jquery.scrollstop.js", "js\/edropper2.js", "inject\/anchor-cursor-default.css", "inject\/anchor-cursor-crosshair.css", "inject\/edropper2.css" ], "commands": { "activate": { "suggested_key": { "default": "Alt+P" }, "description": "Activate pick color from web page" } } } |