Odoo Debug Mode Switcher

Changes the current URL to enable / disable Odoo debug / assets mode.

Odoo Debug Mode Switcher क्या है?

Odoo Debug Mode Switcher woopzzz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Changes the current URL to enable / disable Odoo debug / assets mode."।

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

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

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

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

                        Why?

Because Odoo works a bit different if the debug mode or the assets mode is enabled. See the Odoo official documentation:

https://www.odoo.com/documentation/15.0/applications/general/developer_mode.html#activate-through-the-url

Usage

Only shortcuts. Default ones:

Alt+Shift+1 - Enable debug mode
Alt+Shift+2 - Enable assets mode
Alt+Shift+3 - Disable debug / assets mode

Go to `chrome://extensions/shortcuts` to change keybindings.                    

एक्सटेंशन की मूल जानकारी

नाम Odoo Debug Mode Switcher Odoo Debug Mode Switcher
ID njeojmbiegejppppjmkbjpceppaogpbj
आधिकारिक URL https://chromewebstore.google.com/detail/odoo-debug-mode-switcher/njeojmbiegejppppjmkbjpceppaogpbj
विवरण Changes the current URL to enable / disable Odoo debug / assets mode.
फ़ाइल का आकार 4.73 KB
स्थापना संख्या 44
वर्तमान संस्करण 2.0
अंतिम अपडेट 2023-12-23
प्रकाशन तिथि 2022-01-17
डेवलपर woopzzz
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/woopzz/chrome-odoo-debug
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Odoo Debug Mode Switcher",
    "version": "2.0",
    "description": "Changes the current URL to enable \/ disable Odoo debug \/ assets mode.",
    "background": {
        "service_worker": "service-worker.js"
    },
    "commands": {
        "debug": {
            "suggested_key": {
                "default": "Alt+Shift+1"
            },
            "description": "Enable debug mode"
        },
        "debug-assets": {
            "suggested_key": {
                "default": "Alt+Shift+2"
            },
            "description": "Enable assets mode"
        },
        "no-debug": {
            "suggested_key": {
                "default": "Alt+Shift+3"
            },
            "description": "Disable debug \/ assets mode"
        }
    },
    "permissions": [
        "tabs"
    ],
    "manifest_version": 3
}