any-color
Pick any pixel color from a web page
any-colorคืออะไร?
any-color เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://hankchiu.tw และคุณลักษณะหลักของมันคือ "Pick any pixel color from a web page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย any-color
ดาวน์โหลดไฟล์ส่วนขยาย any-color ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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\/*" ] } |