Inspect and view changes in OPFS Viewer 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",
"name": "OPFS Viewer",
"description": "OPFS Viewer is a original private file system viewer extension",
"version": "1.0.0",
"manifest_version": 3,
"devtools_page": "devtools.html",
"content_scripts": [
{
"matches": [
"https://*/*",
"http://localhost/*",
"http://0.0.0.0/*",
"http://127.0.0.1/*"
],
"run_at": "document_idle",
"js": [
"contentScript.js"
]
}
],
"icons": {
"16": "/icons/16x.png",
"32": "/icons/32x.png",
"48": "/icons/48x.png",
"128": "/icons/128x.png"
}
}