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文件

下載OCC Debugger擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    }
}