Owl devtools

Chrome devtools extension for Odoo Owl framework

Cos'è Owl devtools?

Owl devtools è un'estensione di Chrome sviluppata da Odoo, e la sua funzione principale è "Chrome devtools extension for Odoo Owl framework".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Owl devtools

Scarica i file di estensione Owl devtools 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

                        This extension is used by developers to debug applications which use the Owl JS framework by giving visual information about the structure of the components, their contents and information about their lifecycle.

Documentation:
https://github.com/odoo/owl/blob/master/doc/tools/devtools_guide.md                    

Informazioni di Base sull'Estensione

Nome Owl devtools Owl devtools
ID ldbfanecnfeflgbmgkbmipobkmoolbjb
URL Ufficiale https://chromewebstore.google.com/detail/owl-devtools/ldbfanecnfeflgbmgkbmipobkmoolbjb
Descrizione Chrome devtools extension for Odoo Owl framework
Dimensione del File 906 KB
Conteggio Installazioni 2,855
Versione Corrente 1.2.2
Ultimo Aggiornamento 2023-10-18
Data di Pubblicazione 2023-04-11
Valutazione 5.00/5 Totale 14 Valutazioni
Sviluppatore Odoo
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/odoo/owl/blob/master/doc/tools/devtools_guide.md
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Owl devtools",
    "version": "1.2.2",
    "manifest_version": 3,
    "description": "Chrome devtools extension for Odoo Owl framework",
    "icons": {
        "128": "assets\/icon128.png"
    },
    "action": {
        "default_icon": {
            "128": "assets\/icon_disabled128.png"
        },
        "default_title": "Owl devtools",
        "default_popup": "popup_app\/popup.html"
    },
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "background": {
        "service_worker": "background.js"
    },
    "devtools_page": "devtools_app\/devtools.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}