VinCue

VinCue

This extension integrates VinCue with other automotive websites and applications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "VinCue",
  "description": "This extension integrates VinCue with other automotive websites and applications.",
  "version": "1.2.22",
  "options_page": "options.html",
  "icons": {
    "16": "vincueicon16-2.png",
    "48": "vincueicon48-2.png",
    "128": "vincueicon128-2.png"
  },
  "browser_action": {
    "default_icon": "vincueicon128-2.png"
  },
  "background": {
    "scripts": [
      "jquery-3.1.1.js",
      "jquery.slidereveal.js",
      "xregexp-min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "jquery-3.1.1.js",
        "jquery.slidereveal.js",
        "xregexp-min.js",
        "VinCuePlugin.js",
        "options.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "<all_urls>",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ]
}