TWUING Chrome Extension

Native Angular support for TailwindUI.com has finally arrived 🤯

ما هو TWUING Chrome Extension؟

TWUING Chrome Extension هو إضافة Chrome تم تطويرها بواسطة https://twuing.dev، والميزة الرئيسية لها هي "Native Angular support for TailwindUI.com has finally arrived 🤯".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة TWUING Chrome Extension

قم بتنزيل ملفات الامتداد TWUING Chrome Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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
عنوان صفحة المساعدة 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\/*"
            ]
        }
    ]
}