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 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
}