Odoo Debug Pro
Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)
Odoo Debug Proคืออะไร?
Odoo Debug Pro เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://atularvind.com และคุณลักษณะหลักของมันคือ "Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Odoo Debug Pro
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| อีเมล | [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:\/\/*\/"
]
} | |