Odoo Debug

Minimal and fast extension to toggle debug mode of Odoo

What is Odoo Debug?

Odoo Debug is a Chrome extension developed by https://www.droggol.com, and its main feature is "Minimal and fast extension to toggle debug mode of Odoo".

Extension Screenshots

screenshot
screenshot

Download Odoo Debug Extension CRX File

Download Odoo Debug extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Odoo Debug Odoo Debug
ID hmdmhilocobgohohpdpolmibjklfgkbi
Official URL https://chromewebstore.google.com/detail/odoo-debug/hmdmhilocobgohohpdpolmibjklfgkbi
Description Minimal and fast extension to toggle debug mode of Odoo
File Size 245 KB
Installation Count 91,133
Current Version 4.0
Last Updated 2023-05-31
Publish Date 2019-10-25
Rating 4.69/5 Total 89 Ratings
Developer https://www.droggol.com
Email [email protected]
Payment Type free
Extension Website https://www.droggol.com/odoo-tools
Help Page URL https://github.com/droggol/OdooDebug/issues
Supported Languages 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"
    ]
}