Inspect and view changes in autoniq VIN Scanner 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": "autoniq VIN Scanner",
"version": "0.0.5",
"description": "Instantly reveal vehicle values & market insights with the powerful autoniq® VIN Scanner.",
"permissions": [
"sidePanel",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"48": "static/images/autoniqIcon.png",
"128": "static/images/autoniqIcon128.png"
},
"background": {
"service_worker": "static/js/background.bundle.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"static/js/contentScript.bundle.js"
],
"exclude_matches": [
"https://*.autoniq.com/*"
],
"run_at": "document_end"
}
],
"action": {
"default_title": "Autoniq VIN Scanner"
},
"web_accessible_resources": [
{
"resources": [
"static/js/*.js",
"static/images/*.png"
],
"matches": [
"<all_urls>"
]
}
]
}