Odoo Debug Mode Switcher
Changes the current URL to enable / disable Odoo debug / assets mode.
Что такое Odoo Debug Mode Switcher?
Odoo Debug Mode Switcher - это расширение Chrome, разработанное woopzzz, и его основная функция - "Changes the current URL to enable / disable Odoo debug / assets mode.".
Снимки экрана расширения
Скачать файл CRX расширения Odoo Debug Mode Switcher
Скачайте файлы расширений Odoo Debug Mode Switcher в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Odoo Debug Mode Switcher |
ID | njeojmbiegejppppjmkbjpceppaogpbj |
Официальный URL | https://chromewebstore.google.com/detail/odoo-debug-mode-switcher/njeojmbiegejppppjmkbjpceppaogpbj |
Описание | Changes the current URL to enable / disable Odoo debug / assets mode. |
Размер файла | 4.73 KB |
Количество установок | 44 |
Текущая Версия | 2.0 |
Последнее Обновление | 2023-12-23 |
Дата публикации | 2022-01-17 |
Разработчик | woopzzz |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/woopzz/chrome-odoo-debug |
Поддерживаемые языки | 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 } |