Click any VIN and have the window sticker information at your fingertips. Turn every VIN you see into a clickable button.
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",
"short_name": "Monroney Browser Extension",
"name": "Monroney Browser Extension",
"description": "Click any VIN and have the window sticker information at your fingertips. Turn every VIN you see into a clickable button.",
"version": "1.1",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_title": "Monroney Labels"
},
"icons": {
"16": "monroney-extn-icon-22.png",
"48": "monroney-extn-icon-44.png",
"128": "monroney-extn-icon-66.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"background.js"
],
"all_frames": true
}
],
"permissions": [
"scripting",
"cookies"
],
"host_permissions": [
"https://*/"
],
"background": {
"service_worker": "background.js"
}
}