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
扩展基本信息
名称 | Tailwind Eye Dropper |
ID | nilniojlolabjlhbkhejlokeffohkanp |
官方URL | 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" } } } |