vAuto VIN-Click

vAuto VIN-Click

Finds VIN's on your pages and provides you with a simple way to open up a new vAuto Appraisal with that VIN.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "CAVA",
  "version": "2.0.1",
  "default_locale": "en",
  "description": "Finds VIN's on your pages and provides you with a simple way to open up a new vAuto Appraisal with that VIN.",
  "permissions": [
    "storage",
    "contextMenus",
    "tabs"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self';"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "all_frames": false,
      "js": [
        "lib/browser-polyfill.min.js",
        "lib/popper.min.js",
        "lib/tippy-bundle.umd.min.js",
        "lib/jspanel/jspanel.min.js",
        "services/utils.js",
        "services/vin-validator.js",
        "services/vin-panel-actions.js",
        "services/html-node-matcher.js",
        "services/matched-vin-handler.js",
        "models/matched-node.js",
        "main.js"
      ],
      "css": [
        "lib/jspanel/jspanel.min.css",
        "main.css"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icons/cava_16.png",
    "48": "icons/cava_48.png",
    "72": "icons/cava_72.png",
    "96": "icons/cava_96.png",
    "128": "icons/cava_128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "lib/fonts/*.ttf",
        "images/*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}