Odoo Debug

Minimal and fast extension to toggle debug mode of Odoo

什么是Odoo Debug?

Odoo Debug是由https://www.droggol.com开发的Chrome扩展程序,该扩展的主要功能是“Minimal and fast extension to toggle debug mode of Odoo”。

扩展截图

screenshot
screenshot

下载Odoo Debug扩展crx文件

下载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"
    ]
}