Owl devtools

Chrome devtools extension for Odoo Owl framework

Owl devtools란 무엇입니까?

Owl devtools은(는) Odoo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome devtools extension for Odoo Owl framework"입니다.

확장 프로그램 스크린샷

screenshot

Owl devtools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is used by developers to debug applications which use the Owl JS framework by giving visual information about the structure of the components, their contents and information about their lifecycle.

Documentation:
https://github.com/odoo/owl/blob/master/doc/tools/devtools_guide.md                    

확장 프로그램 기본 정보

이름 Owl devtools Owl devtools
ID ldbfanecnfeflgbmgkbmipobkmoolbjb
공식 URL https://chromewebstore.google.com/detail/owl-devtools/ldbfanecnfeflgbmgkbmipobkmoolbjb
설명 Chrome devtools extension for Odoo Owl framework
파일 크기 906 KB
설치 횟수 2,855
현재 버전 1.2.2
최근 업데이트 2023-10-18
출시 날짜 2023-04-11
평점 5.00/5 총 14 개의 평점
개발자 Odoo
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/odoo/owl/blob/master/doc/tools/devtools_guide.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Owl devtools",
    "version": "1.2.2",
    "manifest_version": 3,
    "description": "Chrome devtools extension for Odoo Owl framework",
    "icons": {
        "128": "assets\/icon128.png"
    },
    "action": {
        "default_icon": {
            "128": "assets\/icon_disabled128.png"
        },
        "default_title": "Owl devtools",
        "default_popup": "popup_app\/popup.html"
    },
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "background": {
        "service_worker": "background.js"
    },
    "devtools_page": "devtools_app\/devtools.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}