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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } ] } |