TWUING Chrome Extension
Native Angular support for TailwindUI.com has finally arrived 🤯
什么是TWUING Chrome Extension?
TWUING Chrome Extension是由https://twuing.dev开发的Chrome扩展程序,该扩展的主要功能是“Native Angular support for TailwindUI.com has finally arrived 🤯”。
扩展截图
下载TWUING Chrome Extension扩展crx文件
下载TWUING Chrome Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | TWUING Chrome Extension |
ID | eojihjhpdjfcbniagebpommkccmdafco |
官方URL | https://chromewebstore.google.com/detail/twuing-chrome-extension/eojihjhpdjfcbniagebpommkccmdafco |
简介 | Native Angular support for TailwindUI.com has finally arrived 🤯 |
文件大小 | 59.69 KB |
安装次数 | 224 |
当前版本 | 2.0.0 |
更新时间 | 2024-01-04 |
上架时间 | 2022-11-03 |
评分 | 5.00/5 共3次评分 |
开发者 | https://twuing.dev |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://twuing.dev/extension?version=v2.0.0 |
帮助页面URL | https://twitter.com/abomakelly |
支持的语言 | 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\/*" ] } ] } |