EpicVin Extension

EpicVin Extension

Have a FREE view of the instant VIN report for a car as you browse any site. Always check the vehicle before buying or selling

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "EpicVin Extension",
  "description": "Have a FREE view of the instant VIN report for a car as you browse any site. Always check the vehicle before buying or selling",
  "version": "2.0.7",
  "manifest_version": 3,
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "/js/content.js"
      ],
      "css": [
        "/css/style.css"
      ],
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "/js/background.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "https://*.epicvin.com/*",
      "https://*.epicvin.local/*"
    ]
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": {
    "script-src": "self"
  },
  "icons": {
    "16": "/img/icons/16.png",
    "24": "/img/icons/24.png",
    "32": "/img/icons/32.png",
    "48": "/img/icons/48.png",
    "64": "/img/icons/64.png",
    "128": "/img/icons/128.png"
  }
}