Odoo Debug Pro

Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)

Qu'est-ce que Odoo Debug Pro ?

Odoo Debug Pro est une extension Chrome développée par https://atularvind.com, et sa fonction principale est "Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Odoo Debug Pro

Téléchargez les fichiers d'extension Odoo Debug Pro au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Odoo Debug is a super simple Odoo developer tool for chrome which helps to toggle the developer mode using default keyboard shorcuts & icon click events.

Keyboard Shortcuts:

Press (ctrl + .) for normal debug mode
Press (ctrl + shift + .) for debug mode with assets


Toggle Debug on Odoo Debug Icon Click: 

Single click to toggle the developer mode
Double click to toggle the developer mode with assets.

Contribute Here: https://github.com/atularvind/OdooDebug                    

Informations de Base sur l'Extension

Nom Odoo Debug Pro Odoo Debug Pro
ID nfnladagngmiggfaojdbpjdpehdfgiac
URL Officiel https://chromewebstore.google.com/detail/odoo-debug-pro/nfnladagngmiggfaojdbpjdpehdfgiac
Description Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)
Taille du Fichier 15.57 KB
Nombre d'Installations 2,718
Version Actuelle 1.2.0
Dernière Mise à Jour 2022-08-09
Date de Publication 2018-12-18
Évaluation 3.69/5 Total 13 Évaluations
Développeur https://atularvind.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://atularvind.com
URL de la Page d'Aide https://github.com/atularvind/OdooDebug/issues
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Odoo Debug Pro",
    "description": "Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)",
    "version": "1.2.0",
    "author": "Atul Arvind",
    "homepage_url": "https:\/\/atularvind.com",
    "offline_enabled": true,
    "browser_action": {
        "default_title": "Press Ctrl+. To Toggle Odoo Developer Mode.",
        "default_icon": "debug_off.png"
    },
    "background": {
        "scripts": [
            "odoo_debug.js"
        ]
    },
    "icons": {
        "16": "odoo_debug.png",
        "32": "odoo_debug.png",
        "48": "odoo_debug.png",
        "128": "odoo_debug.png"
    },
    "commands": {
        "toggle-odoo-debug": {
            "suggested_key": {
                "default": "Ctrl+Period",
                "windows": "Ctrl+Period",
                "mac": "Command+Period",
                "chromeos": "Ctrl+Period",
                "linux": "Ctrl+Period"
            },
            "description": "Toggle Odoo Debug"
        },
        "toggle-odoo-debug-asset": {
            "suggested_key": {
                "default": "Ctrl+Shift+Period",
                "windows": "Ctrl+Shift+Period",
                "mac": "Command+Shift+Period",
                "chromeos": "Ctrl+Shift+Period",
                "linux": "Ctrl+Shift+Period"
            },
            "description": "Toggle Odoo Debug with assets"
        }
    },
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}