CanvaSpy

Web Graphics Debugger

What is CanvaSpy?

CanvaSpy is a Chrome extension developed by https://james.darpinian.com, and its main feature is "Web Graphics Debugger".

Extension Screenshots

screenshot

Download CanvaSpy Extension CRX File

Download CanvaSpy 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

                        Records trace files for debugging WebGL, WebGPU, and HTML Canvas 2D rendering.

Click the extension icon to start recording a trace of the current page, then click again to save the trace file.                    

Extension Basic Information

Name CanvaSpy CanvaSpy
ID bkoaagoiddaojjehhfnoljpeibhbboml
Official URL https://chromewebstore.google.com/detail/canvaspy/bkoaagoiddaojjehhfnoljpeibhbboml
Description Web Graphics Debugger
File Size 459 KB
Installation Count 104
Current Version 3.0
Last Updated 2023-06-27
Publish Date 2022-10-29
Developer https://james.darpinian.com
Email [email protected]
Payment Type free
Extension Website https://james.darpinian.com/gpudebug/src/replayTrace.html
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CanvaSpy",
    "description": "Web Graphics Debugger",
    "version": "3.0",
    "manifest_version": 3,
    "icons": {
        "64": "canvaspy-logo-64.png",
        "128": "canvaspy-logo-128.png",
        "192": "canvaspy-logo-192.png",
        "256": "canvaspy-logo-256.png",
        "512": "canvaspy-logo-512.png"
    },
    "action": {
        "default_title": "Record a trace"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "webNavigation",
        "contextMenus",
        "downloads"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "version.txt",
                "fileWorker.js",
                "fileWorker.js.map",
                "canvaspy.js.map",
                "getDirnameOfThisModule.js"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "optional_host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    }
}