OCC Debugger

Add some functionalities to debug occ

OCC Debugger란 무엇입니까?

OCC Debugger은(는) William Lima에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add some functionalities to debug occ"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

OCC Debugger 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Simple OCC (Oracle Commerce cloud) debugger for developers.
Includes features like:
- Tagging debugging
- Cookies debugging
- Topics debugging
- Spinner debugging
- Devtools panel for knockout inspection
- Knockout data serialization                    

확장 프로그램 기본 정보

이름 OCC Debugger OCC Debugger
ID ohciamgkcmonnkjjmbcioljgifddbcga
공식 URL https://chromewebstore.google.com/detail/occ-debugger/ohciamgkcmonnkjjmbcioljgifddbcga
설명 Add some functionalities to debug occ
파일 크기 326 KB
설치 횟수 169
현재 버전 1.4.3
최근 업데이트 2021-04-14
출시 날짜 2021-02-17
평점 5.00/5 총 3 개의 평점
개발자 William Lima
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OCC Debugger",
    "version": "1.4.3",
    "description": "Add some functionalities to debug occ",
    "short_name": "Occ Debugger",
    "permissions": [
        "tabs",
        "storage",
        ""
    ],
    "web_accessible_resources": [
        "scripts\/occDebugger.js",
        "views\/storefront\/index.js"
    ],
    "devtools_page": "views\/devtools\/index.html",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/contentScript.js"
            ],
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_title": "OCC Debugger",
        "default_popup": "views\/popup\/index.html",
        "default_icon": {
            "16": "assets\/icons\/icon16.png",
            "32": "assets\/icons\/icon32.png",
            "128": "assets\/icons\/icon128.png"
        }
    }
}