iSeeCars Instant VIN Report

iSeeCars Instant VIN Report

View an instant VIN Report for a car as you browse Craigslist or any site. It’s FREE and a must-check before buying or selling.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "iSeeCars Instant VIN Report",
  "description": "View an instant VIN Report for a car as you browse Craigslist or any site. It’s FREE and a must-check before buying or selling.",
  "version": "1.0.16",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "iSeeCars",
    "default_icon": {
      "16": "16.png",
      "24": "24.png",
      "32": "32.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.iseecars.com/*",
      "*://*.iseecars-local.com/*"
    ]
  }
}