OCC Debugger

Add some functionalities to debug occ

What is OCC Debugger?

OCC Debugger is a Chrome extension developed by William Lima, and its main feature is "Add some functionalities to debug occ".

Extension Screenshots

screenshot
screenshot

Download OCC Debugger Extension CRX File

Download OCC Debugger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name OCC Debugger OCC Debugger
ID ohciamgkcmonnkjjmbcioljgifddbcga
Official URL https://chromewebstore.google.com/detail/occ-debugger/ohciamgkcmonnkjjmbcioljgifddbcga
Description Add some functionalities to debug occ
File Size 326 KB
Installation Count 169
Current Version 1.4.3
Last Updated 2021-04-14
Publish Date 2021-02-17
Rating 5.00/5 Total 3 Ratings
Developer William Lima
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    }
}