Black-shrimp
An open source eyedropper extension for Chrome. Pick, save and organize color swatches. Export them for Adobe programs.
Black-shrimp란 무엇입니까?
Black-shrimp은(는) Thomas L'huillier에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An open source eyedropper extension for Chrome. Pick, save and organize color swatches. Export them for Adobe programs."입니다.
확장 프로그램 스크린샷
Black-shrimp 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
📝 FEATURES - Pick colors by clicking on the page with the eyedropper - Create groups and organize your swatches - Switch between `hex`, `rgb` and `hsl` color modes - Export your collection in a `.ase` file and import it in Photoshop, Illustrator and InDesign. ⌨️ HOTKEYS - `ALT + B` is the default key bidding to open Black shrimp You can change it by browsing to `chrome://extensions/shortcuts` While open: - `ALT + SHIFT + A` — Add a color - `ALT + SHIFT + F` — create Folder - `ALT + SHIFT + D` — Delete selection - `ALT + SHIFT + E` — Export swatches ⬇️ EXPORT for Photoshop, Illustrator and InDesign Black shrimp exports your color swatches in Adobe Swatch Exchange files (.ase) that you can import in Photoshop, Illustrator and InDesign. - Photoshop: https://helpx.adobe.com/photoshop/using/customizing-color-pickers-swatches.html#manage_swatch_libraries#manage_swatch_libraries - Illustrator: https://helpx.adobe.com/illustrator/using/using-creating-swatches.html#import_swatches_from_another_document - Indesign: https://helpx.adobe.com/indesign/using/swatches.html#import_swatches 🗣️ Help us improve this project - log detailed bugs and feature requests on github: https://github.com/Thomas-lhuillier/Black-shrimp/issues - contribute to the project: https://github.com/Thomas-lhuillier/Black-shrimp 🤘 Help us out by sharing with your friends and giving a rating.
확장 프로그램 기본 정보
이름 | Black-shrimp |
ID | oggljfcldhdcoemgnamdaaaofaenefni |
공식 URL | https://chromewebstore.google.com/detail/black-shrimp/oggljfcldhdcoemgnamdaaaofaenefni |
설명 | An open source eyedropper extension for Chrome. Pick, save and organize color swatches. Export them for Adobe programs. |
파일 크기 | 172 KB |
설치 횟수 | 4,480 |
현재 버전 | 1.2.2 |
최근 업데이트 | 2019-06-13 |
출시 날짜 | 2019-06-09 |
평점 | 3.90/5 총 20 개의 평점 |
개발자 | Thomas L'huillier |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "An open source eyedropper extension for Chrome. Pick, save and organize color swatches. Export them for Adobe programs.", "version": "1.2.2", "name": "Black-shrimp", "manifest_version": 2, "author": "Thomas L'huillier", "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+B" } } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "web_accessible_resources": [ "*.png", "*.woff", "*.css", "iframe.js", "index.html" ], "browser_action": { "default_icon": { "16": "assets\/img\/icon16.png" }, "default_title": "Black shrimp" }, "icons": { "16": "assets\/img\/icon16.png", "48": "assets\/img\/icon48.png", "128": "assets\/img\/icon128.png" }, "permissions": [ "downloads", "activeTab", "storage", "file:\/\/*\/*" ] } |