TWUING Chrome Extension
Native Angular support for TailwindUI.com has finally arrived 🤯
TWUING Chrome Extension là gì?
TWUING Chrome Extension là một tiện ích mở rộng Chrome được phát triển bởi https://twuing.dev, và tính năng chính của nó là "Native Angular support for TailwindUI.com has finally arrived 🤯".
Ả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 TWUING Chrome Extension
Tải xuống các tệp mở rộng TWUING Chrome Extension 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
TWUING is a Tailwind UI to Angular component converter. This extension brings all the power of TWUING.dev so you can convert code without having to leave TailwindUI.com. TWUING takes care of all the important things like implementing animations, managing visibility states, adding click handlers and directives, and just generally conforming the code into the "Angular way" of doing things. With one click, you will get a fully functional Angular implementation of the component straight from TailwindUI.com! It gives you back time so you can focus on adding your unique features to your application.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | TWUING Chrome Extension |
ID | eojihjhpdjfcbniagebpommkccmdafco |
URL Chính Thức | https://chromewebstore.google.com/detail/twuing-chrome-extension/eojihjhpdjfcbniagebpommkccmdafco |
Mô tả | Native Angular support for TailwindUI.com has finally arrived 🤯 |
Kích Thước Tệp | 59.69 KB |
Số Lần Cài Đặt | 224 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2024-01-04 |
Ngày Phát Hành | 2022-11-03 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://twuing.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://twuing.dev/extension?version=v2.0.0 |
URL Trang Trợ Giúp | https://twitter.com/abomakelly |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TWUING Chrome Extension", "description": "Native Angular support for TailwindUI.com has finally arrived \ud83e\udd2f", "version": "2.0.0", "icons": { "16": ".\/images\/twuing-extension-16px.png", "32": ".\/images\/twuing-extension-32px.png", "48": ".\/images\/twuing-extension-48px.png", "128": ".\/images\/twuing-extension-128px.png" }, "action": { "default_title": "TWUING Chrome Extension", "default_popup": ".\/html\/popup.html", "default_icon": { "16": ".\/images\/twuing-extension-16px.png", "32": ".\/images\/twuing-extension-32px.png", "48": ".\/images\/twuing-extension-48px.png", "128": ".\/images\/twuing-extension-128px.png" } }, "background": { "service_worker": ".\/js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/tailwindui.com\/*" ], "js": [ ".\/js\/content.js", ".\/js\/twuing.js", ".\/libs\/prism\/1.24.1\/prism.min.js", ".\/libs\/prism\/1.24.1\/prism-typescript.js" ], "css": [ ".\/css\/styles.css", ".\/css\/tailwind.css" ] } ], "permissions": [ "storage", "tabs", "clipboardWrite" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'", "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/cdn.jsdelivr.net'; object-src 'self'" }, "externally_connectable": { "matches": [ "https:\/\/*.twuing.dev\/*" ] }, "web_accessible_resources": [ { "resources": [ ".\/css\/styles.css", ".\/css\/tailwind.css", "*.html" ], "matches": [ "https:\/\/tailwindui.com\/*" ] } ] } |