Inspect and view changes in Graph 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Graph Visualizer",
"version": "1.0",
"description": "Tool for visualizing graphs and trees right from your browser side panel.",
"icons": {
"16": "icons/graph-icon-16.png",
"48": "icons/graph-icon-48.png",
"128": "icons/graph-icon-128.png"
},
"action": {
"default_title": "Click to toggle Graph Visualizer"
},
"background": {
"service_worker": "service-worker.js"
},
"side_panel": {
"default_path": "index.html"
},
"permissions": [
"sidePanel"
]
}