Owl devtools

Chrome devtools extension for Odoo Owl framework

Wat is Owl devtools?

Owl devtools is een Chrome-extensie ontwikkeld door Odoo, en de belangrijkste functie is "Chrome devtools extension for Odoo Owl framework".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Owl devtools

Download Owl devtools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Owl devtools Owl devtools
ID ldbfanecnfeflgbmgkbmipobkmoolbjb
Officiële URL https://chromewebstore.google.com/detail/owl-devtools/ldbfanecnfeflgbmgkbmipobkmoolbjb
Beschrijving Chrome devtools extension for Odoo Owl framework
Bestandsgrootte 906 KB
Aantal Installaties 2,855
Huidige Versie 1.2.2
Laatst Bijgewerkt 2023-10-18
Publicatiedatum 2023-04-11
Beoordeling 5.00/5 Totaal 14 Beoordelingen
Ontwikkelaar Odoo
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/odoo/owl/blob/master/doc/tools/devtools_guide.md
Ondersteunde Talen 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"
            ]
        }
    ]
}