TWUING Chrome Extension

Native Angular support for TailwindUI.com has finally arrived 🤯

TWUING Chrome Extension क्या है?

TWUING Chrome Extension https://twuing.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Native Angular support for TailwindUI.com has finally arrived 🤯"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TWUING Chrome Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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\/*"
            ]
        }
    ]
}