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+.)"입니다.

확장 프로그램 스크린샷

screenshot

Odoo Debug Pro 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Odoo Debug Pro Odoo Debug Pro
ID nfnladagngmiggfaojdbpjdpehdfgiac
공식 URL 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:\/\/*\/"
    ]
}