Odoo Debug Mode Switcher
Changes the current URL to enable / disable Odoo debug / assets mode.
什麼是Odoo Debug Mode Switcher?
Odoo Debug Mode Switcher是由woopzzz開發的Chrome擴展程式,該擴展的主要功能是“Changes the current URL to enable / disable Odoo debug / assets mode.”。
擴展截圖
下載Odoo Debug Mode Switcher擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | njeojmbiegejppppjmkbjpceppaogpbj |
| 官方網址 | 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
} | |