Odoo Debug Pro
Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)
什麼是Odoo Debug Pro?
Odoo Debug Pro是由https://atularvind.com開發的Chrome擴展程式,該擴展的主要功能是“Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.)”。
擴展截圖
下載Odoo Debug Pro擴展crx文件
下載Odoo Debug Pro擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        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                     擴展基本資訊
| 名稱 |   |  
| ID | nfnladagngmiggfaojdbpjdpehdfgiac | 
| 官方網址 | https://chromewebstore.google.com/detail/odoo-debug-pro/nfnladagngmiggfaojdbpjdpehdfgiac | 
| 簡介 | Super Simple Extension To Toggle Odoo Developer Mode Using Keyboard Shortcuts (Ctrl+.) | 
| 檔案大小 | 15.57 KB | 
| 安裝次數 | 2,718 | 
| 目前版本 | 1.2.0 | 
| 更新時間 | 2022-08-09 | 
| 上架時間 | 2018-12-18 | 
| 評分 | 3.69/5 共 13 次評分 | 
| 開發者 | https://atularvind.com | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 擴展官網 | https://atularvind.com | 
| 說明頁面URL | https://github.com/atularvind/OdooDebug/issues | 
| 支援的語言 | 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:\/\/*\/"
    ]
}  |  |