Flutter Widget Catcher

Copy Flutter widget easily ...

Cos'è Flutter Widget Catcher?

Flutter Widget Catcher è un'estensione di Chrome sviluppata da rajapakshabawantha, e la sua funzione principale è "Copy Flutter widget easily ...".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Flutter Widget Catcher

Scarica i file di estensione Flutter Widget Catcher 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

                        Sometimes copying flutter widget from web can be tricky. Because finding  correct closing parenthesis might be quite cumbersome  . but don't you worry. Flutter Widget Catcher got you covered                    

Informazioni di Base sull'Estensione

Nome Flutter Widget Catcher Flutter Widget Catcher
ID fmodefdejfdmjjlfdodklhkoichndcgg
URL Ufficiale https://chromewebstore.google.com/detail/flutter-widget-catcher/fmodefdejfdmjjlfdodklhkoichndcgg
Descrizione Copy Flutter widget easily ...
Dimensione del File 28.07 KB
Conteggio Installazioni 530
Versione Corrente 0.3.0
Ultimo Aggiornamento 2022-03-29
Data di Pubblicazione 2022-03-29
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore rajapakshabawantha
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Flutter Widget Catcher",
    "version": "0.3.0",
    "description": "Copy Flutter widget easily ...",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Flutter Widget Catcher",
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ],
            "css": [
                "snackbar.css"
            ]
        }
    ]
}