FastBook VIN Finder

FastBook VIN Finder

FastBook VIN Finder Chrome Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FastBook VIN Finder",
  "version": "2.1.0",
  "description": "FastBook VIN Finder Chrome Extension",
  "manifest_version": 3,
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/third-party/jquery/3.3.1/jquery-3.3.1.min.js",
        "js/content_script.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html/frame.html"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "icons": {
    "16": "img/icon-16x16.png",
    "48": "img/icon-48x48.png",
    "128": "img/icon-128x128.png"
  }
}