Inspect and view changes in Controller Visualizer source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Controller Visualizer",
"version": "1.2.0",
"description": "An extension that adds a visualization of controller input to the page.",
"icons": {
"128": "icons/icon128x128.png"
},
"permissions": [
"activeTab",
"scripting",
"storage"
],
"action": {
"default_title": "Display Controller Visualizer"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"images/*.png",
"images/**/*.png",
"./contentScript/content.js"
],
"matches": [
"https://*/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}