Odoo Debug

Minimal and fast extension to toggle debug mode of Odoo

Apa itu Odoo Debug?

Odoo Debug adalah ekstensi Chrome yang dikembangkan oleh https://www.droggol.com, dan fitur utamanya adalah "Minimal and fast extension to toggle debug mode of Odoo".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Odoo Debug

Unduh file ekstensi Odoo Debug dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Odoo Debug Odoo Debug
ID hmdmhilocobgohohpdpolmibjklfgkbi
URL Resmi https://chromewebstore.google.com/detail/odoo-debug/hmdmhilocobgohohpdpolmibjklfgkbi
Deskripsi Minimal and fast extension to toggle debug mode of Odoo
Ukuran File 245 KB
Jumlah Instalasi 91,133
Versi Saat Ini 4.0
Terakhir Diperbarui 2023-05-31
Tanggal Publikasi 2019-10-25
Penilaian 4.69/5 Total 89 Penilaian
Pengembang https://www.droggol.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.droggol.com/odoo-tools
URL Halaman Bantuan https://github.com/droggol/OdooDebug/issues
Bahasa yang Didukung 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"
    ]
}