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 |
| 公式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 |
| Eメール | [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
} | |