Odoo Debug

Minimal and fast extension to toggle debug mode of Odoo

Odoo Debug क्या है?

Odoo Debug https://www.droggol.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Minimal and fast extension to toggle debug mode of Odoo"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Odoo Debug एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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