Odoo Debug Mode Switcher

Changes the current URL to enable / disable Odoo debug / assets mode.

Cos'è Odoo Debug Mode Switcher?

Odoo Debug Mode Switcher è un'estensione di Chrome sviluppata da woopzzz, e la sua funzione principale è "Changes the current URL to enable / disable Odoo debug / assets mode.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Odoo Debug Mode Switcher

Scarica i file di estensione Odoo Debug Mode Switcher 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

                        Why?

Because Odoo works a bit different if the debug mode or the assets mode is enabled. See the Odoo official documentation:

https://www.odoo.com/documentation/15.0/applications/general/developer_mode.html#activate-through-the-url

Usage

Only shortcuts. Default ones:

Alt+Shift+1 - Enable debug mode
Alt+Shift+2 - Enable assets mode
Alt+Shift+3 - Disable debug / assets mode

Go to `chrome://extensions/shortcuts` to change keybindings.                    

Informazioni di Base sull'Estensione

Nome Odoo Debug Mode Switcher Odoo Debug Mode Switcher
ID njeojmbiegejppppjmkbjpceppaogpbj
URL Ufficiale https://chromewebstore.google.com/detail/odoo-debug-mode-switcher/njeojmbiegejppppjmkbjpceppaogpbj
Descrizione Changes the current URL to enable / disable Odoo debug / assets mode.
Dimensione del File 4.73 KB
Conteggio Installazioni 44
Versione Corrente 2.0
Ultimo Aggiornamento 2023-12-23
Data di Pubblicazione 2022-01-17
Sviluppatore woopzzz
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/woopzz/chrome-odoo-debug
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Odoo Debug Mode Switcher",
    "version": "2.0",
    "description": "Changes the current URL to enable \/ disable Odoo debug \/ assets mode.",
    "background": {
        "service_worker": "service-worker.js"
    },
    "commands": {
        "debug": {
            "suggested_key": {
                "default": "Alt+Shift+1"
            },
            "description": "Enable debug mode"
        },
        "debug-assets": {
            "suggested_key": {
                "default": "Alt+Shift+2"
            },
            "description": "Enable assets mode"
        },
        "no-debug": {
            "suggested_key": {
                "default": "Alt+Shift+3"
            },
            "description": "Disable debug \/ assets mode"
        }
    },
    "permissions": [
        "tabs"
    ],
    "manifest_version": 3
}