Odoo Debug Pro
Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)
Odoo Debug Proとは何ですか?
Odoo Debug Proはhttps://atularvind.comによって開発されたChromeの拡張機能で、その主な機能は「Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)」です。
拡張機能のスクリーンショット
Odoo Debug Pro拡張機能のCRXファイルをダウンロード
Odoo Debug Pro拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Odoo Debug is a super simple Odoo developer tool for chrome which helps to toggle the developer mode using default keyboard shorcuts & icon click events.
Keyboard Shortcuts:
Press (ctrl + .) for normal debug mode
Press (ctrl + shift + .) for debug mode with assets
Toggle Debug on Odoo Debug Icon Click:
Single click to toggle the developer mode
Double click to toggle the developer mode with assets.
Contribute Here: https://github.com/atularvind/OdooDebug 拡張機能の基本情報
| 名前 | |
| ID | nfnladagngmiggfaojdbpjdpehdfgiac |
| 公式URL | https://chromewebstore.google.com/detail/odoo-debug-pro/nfnladagngmiggfaojdbpjdpehdfgiac |
| 説明 | Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.) |
| ファイルサイズ | 15.57 KB |
| インストール数 | 2,718 |
| 現在のバージョン | 1.2.0 |
| 最終更新日 | 2022-08-09 |
| 公開日 | 2018-12-18 |
| 評価 | 3.69/5 合計 13 レビュー |
| 開発者 | https://atularvind.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://atularvind.com |
| ヘルプページのURL | https://github.com/atularvind/OdooDebug/issues |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Odoo Debug Pro",
"description": "Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)",
"version": "1.2.0",
"author": "Atul Arvind",
"homepage_url": "https:\/\/atularvind.com",
"offline_enabled": true,
"browser_action": {
"default_title": "Press Ctrl+. To Toggle Odoo Developer Mode.",
"default_icon": "debug_off.png"
},
"background": {
"scripts": [
"odoo_debug.js"
]
},
"icons": {
"16": "odoo_debug.png",
"32": "odoo_debug.png",
"48": "odoo_debug.png",
"128": "odoo_debug.png"
},
"commands": {
"toggle-odoo-debug": {
"suggested_key": {
"default": "Ctrl+Period",
"windows": "Ctrl+Period",
"mac": "Command+Period",
"chromeos": "Ctrl+Period",
"linux": "Ctrl+Period"
},
"description": "Toggle Odoo Debug"
},
"toggle-odoo-debug-asset": {
"suggested_key": {
"default": "Ctrl+Shift+Period",
"windows": "Ctrl+Shift+Period",
"mac": "Command+Shift+Period",
"chromeos": "Ctrl+Shift+Period",
"linux": "Ctrl+Shift+Period"
},
"description": "Toggle Odoo Debug with assets"
}
},
"permissions": [
"http:\/\/*\/",
"https:\/\/*\/"
]
} | |