Odoo Debug

Minimal and fast extension to toggle debug mode of Odoo

Odoo Debug란 무엇입니까?

Odoo Debug은(는) https://www.droggol.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Minimal and fast extension to toggle debug mode of Odoo"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Odoo Debug Odoo Debug
ID hmdmhilocobgohohpdpolmibjklfgkbi
공식 URL https://chromewebstore.google.com/detail/odoo-debug/hmdmhilocobgohohpdpolmibjklfgkbi
설명 Minimal and fast extension to toggle debug mode of Odoo
파일 크기 245 KB
설치 횟수 91,133
현재 버전 4.0
최근 업데이트 2023-05-31
출시 날짜 2019-10-25
평점 4.69/5 총 89 개의 평점
개발자 https://www.droggol.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.droggol.com/odoo-tools
도움말 페이지 URL https://github.com/droggol/OdooDebug/issues
지원되는 언어 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"
    ]
}