Inspect and view changes in Generator QR Code 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": "Generator QR Code",
"version": "1.0.0",
"description": "Generator QR Code",
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"action": {
"default_popup": "src/pages/popup/index.html",
"default_icon": "icons/logo.png"
},
"icons": {
"128": "icons/logo.png"
},
"web_accessible_resources": [
{
"matches": [
"*://*/*"
],
"resources": [
"assets/js/*.js",
"assets/css/*.css",
"assets/img/*"
],
"use_dynamic_url": false
}
]
}