colourSpy
Easily view CSS colours used on a website.
colourSpyคืออะไร?
colourSpy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brandonbarker และคุณลักษณะหลักของมันคือ "Easily view CSS colours used on a website."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย colourSpy
ดาวน์โหลดไฟล์ส่วนขยาย colourSpy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
colourSpy is a handy extension to quickly find and preview colours used on a website. It displays them all in a list of swatches where you can easily copy the corresponding RGB, HEX or HSL values for use in your IDE of choice, or simply export the list of colours to your format of choice. Supported export formats at the moment are: CSS SCSS LESS Plain Text JSON Changelog: 0.1.4: * Added remove swatch button * Bug fixes and optimization 0.1.3: * Added export functionality (export to CSS / SCSS / LESS / JSON or Plain Text) 0.1.2: * Bug fixes and UI tweaks 0.1.0 * Initial release https://github.com/brandon-barker/colourSpy
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gibojaiafjjbdkfciggcoikfeolodlhm |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/colourspy/gibojaiafjjbdkfciggcoikfeolodlhm |
คำอธิบาย | Easily view CSS colours used on a website. |
ขนาดไฟล์ | 787 KB |
จำนวนการติดตั้ง | 193 |
เวอร์ชันปัจจุบัน | 0.1.4 |
อัปเดตครั้งล่าสุด | 2014-08-18 |
วันที่เผยแพร่ | 2014-08-18 |
คะแนน | 3.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | brandonbarker |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/brandon-barker/colourSpy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "colourSpy", "version": "0.1.4", "manifest_version": 2, "description": "Easily view CSS colours used on a website.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery\/jquery.js", "js\/color\/color-0.7.1.min.js", "content.js" ] } ], "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "colourSpy", "default_popup": "src\/browser_action\/browser_action.html" }, "web_accessible_resources": [ "js\/jquery\/jquery.js", "js\/jquery\/jquery.min.js", "js\/jquery\/jquery.min.map.js", "css\/font-awesome.min.css", "js\/underscore\/underscore-min.js" ], "permissions": [ "clipboardWrite", "contextMenus", "tabs", "*:\/\/*\/*" ] } |