Odoo Debug

Minimal and fast extension to toggle debug mode of Odoo

Odoo Debug là gì?

Odoo Debug là một tiện ích mở rộng Chrome được phát triển bởi https://www.droggol.com, và tính năng chính của nó là "Minimal and fast extension to toggle debug mode of Odoo".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Odoo Debug

Tải xuống các tệp mở rộng Odoo Debug dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Odoo Debug Odoo Debug
ID hmdmhilocobgohohpdpolmibjklfgkbi
URL Chính Thức https://chromewebstore.google.com/detail/odoo-debug/hmdmhilocobgohohpdpolmibjklfgkbi
Mô tả Minimal and fast extension to toggle debug mode of Odoo
Kích Thước Tệp 245 KB
Số Lần Cài Đặt 91,133
Phiên Bản Hiện Tại 4.0
Cập Nhật Lần Cuối 2023-05-31
Ngày Phát Hành 2019-10-25
Đánh Giá 4.69/5 Tổng số 89 Đánh Giá
Nhà Phát Triển https://www.droggol.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.droggol.com/odoo-tools
URL Trang Trợ Giúp https://github.com/droggol/OdooDebug/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}