Odoo Debug

Minimal and fast extension to toggle debug mode of Odoo

Odoo Debugคืออะไร?

Odoo Debug เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.droggol.com และคุณลักษณะหลักของมันคือ "Minimal and fast extension to toggle debug mode of Odoo"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Odoo Debug

ดาวน์โหลดไฟล์ส่วนขยาย Odoo Debug ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Minimal and fast extension to toggle debug mode of Odoo.
Can be used via mouse and keyboard shortcuts

How to use with mouse?
- Click on extension for debug.
- Double click on extension for debug with Assets mode.

How to use with keyboard? (use cmd ⌘ in mac)
- Press Ctrl + . for debug mode.
- Press Ctrl + . + . for debug with Assets mode. (hold ctrl and press . two times)

You can change keyboard shortcut from Setting > Extension > Keyboard shortcuts (at bottom) 
Contribute at: https://github.com/droggol/OdooDebug

Emoji art supplied by Emojione                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Odoo Debug Odoo Debug
ID hmdmhilocobgohohpdpolmibjklfgkbi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/odoo-debug/hmdmhilocobgohohpdpolmibjklfgkbi
คำอธิบาย Minimal and fast extension to toggle debug mode of Odoo
ขนาดไฟล์ 245 KB
จำนวนการติดตั้ง 91,133
เวอร์ชันปัจจุบัน 4.0
อัปเดตครั้งล่าสุด 2023-05-31
วันที่เผยแพร่ 2019-10-25
คะแนน 4.69/5 รวมทั้งหมด 89 คะแนน
ผู้พัฒนา https://www.droggol.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.droggol.com/odoo-tools
URL หน้าช่วยเหลือ https://github.com/droggol/OdooDebug/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Odoo Debug",
    "version": "4.0",
    "manifest_version": 2,
    "description": "Minimal and fast extension to toggle debug mode of Odoo",
    "short_name": "Odoo Debug",
    "browser_action": {
        "default_icon": "off.png",
        "default_title": "- Click for normal debug \n- Double click for debug with assets"
    },
    "incognito": "spanning",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "off.png",
        "128": "off.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Period"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "pageScript.js"
    ]
}