TWUING Chrome Extension

Native Angular support for TailwindUI.com has finally arrived 🤯

Cos'è TWUING Chrome Extension?

TWUING Chrome Extension è un'estensione di Chrome sviluppata da https://twuing.dev, e la sua funzione principale è "Native Angular support for TailwindUI.com has finally arrived 🤯".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione TWUING Chrome Extension

Scarica i file di estensione TWUING Chrome Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome TWUING Chrome Extension TWUING Chrome Extension
ID eojihjhpdjfcbniagebpommkccmdafco
URL Ufficiale https://chromewebstore.google.com/detail/twuing-chrome-extension/eojihjhpdjfcbniagebpommkccmdafco
Descrizione Native Angular support for TailwindUI.com has finally arrived 🤯
Dimensione del File 59.69 KB
Conteggio Installazioni 224
Versione Corrente 2.0.0
Ultimo Aggiornamento 2024-01-04
Data di Pubblicazione 2022-11-03
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore https://twuing.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://twuing.dev/extension?version=v2.0.0
URL della Pagina di Aiuto https://twitter.com/abomakelly
Lingue Supportate 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\/*"
            ]
        }
    ]
}