Odoo Debug Mode Switcher

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

Co to jest Odoo Debug Mode Switcher?

Odoo Debug Mode Switcher to rozszerzenie Chrome opracowane przez woopzzz, a jego główną funkcją jest „Changes the current URL to enable / disable Odoo debug / assets mode.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Odoo Debug Mode Switcher

Pobierz pliki rozszerzeń Odoo Debug Mode Switcher w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Odoo Debug Mode Switcher Odoo Debug Mode Switcher
ID njeojmbiegejppppjmkbjpceppaogpbj
Oficjalny URL https://chromewebstore.google.com/detail/odoo-debug-mode-switcher/njeojmbiegejppppjmkbjpceppaogpbj
Opis Changes the current URL to enable / disable Odoo debug / assets mode.
Rozmiar pliku 4.73 KB
Liczba instalacji 44
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2023-12-23
Data Publikacji 2022-01-17
Deweloper woopzzz
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/woopzz/chrome-odoo-debug
Obsługiwane Języki 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
}