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文件
下載Tailwind Eye Dropper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | nilniojlolabjlhbkhejlokeffohkanp |
| 官方網址 | 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"
}
}
} | |