Color Dropper
An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.
Color Dropperคืออะไร?
Color Dropper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://colordropper.xyz และคุณลักษณะหลักของมันคือ "An easy to use eyedropper tool that automatically copies the Hex Code of the desired color."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Color Dropper
ดาวน์โหลดไฟล์ส่วนขยาย Color Dropper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } } } |