FigmaToTailwind
Get all CSS styling converted to tailwind classes directly from Figma.
FigmaToTailwind là gì?
FigmaToTailwind là một tiện ích mở rộng Chrome được phát triển bởi https://ardit.dev, và tính năng chính của nó là "Get all CSS styling converted to tailwind classes directly from Figma.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng FigmaToTailwind
Tải xuống các tệp mở rộng FigmaToTailwind dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Get all CSS styling converted to tailwind classes directly from Figma.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | FigmaToTailwind |
ID | kinjakmojdjkkddmpncnjnjpnciinana |
URL Chính Thức | https://chromewebstore.google.com/detail/figmatotailwind/kinjakmojdjkkddmpncnjnjpnciinana |
Mô tả | Get all CSS styling converted to tailwind classes directly from Figma. |
Kích Thước Tệp | 47.42 KB |
Số Lần Cài Đặt | 25 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2022-09-25 |
Ngày Phát Hành | 2022-09-21 |
Nhà Phát Triển | https://ardit.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://ardit.dev/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FigmaToTailwind", "version": "1.0.1", "description": "Get all CSS styling converted to tailwind classes directly from Figma.", "permissions": [ "tabs" ], "host_permissions": [ "https:\/\/*.figma.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.figma.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/copy.png" ], "matches": [ "https:\/\/*.figma.com\/*" ] } ], "action": { "default_icon": { "16": "assets\/ext-icon.png", "24": "assets\/ext-icon.png", "32": "assets\/ext-icon.png" }, "default_title": "FigmaToTailwind", "default_popup": "popup.html" }, "manifest_version": 3 } |