Carbly VIN Scanner Extension

Carbly VIN Scanner Extension

Detect VIN numbers to automatically send to Carbly VIN Scanner

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Carbly VIN Scanner Extension",
  "version": "0.16.0",
  "description": "Detect VIN numbers to automatically send to Carbly VIN Scanner",
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_title": "Carbly",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/carbly_16.png",
    "32": "icons/carbly_32.png",
    "48": "icons/carbly_48.png",
    "128": "icons/carbly_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "default-src 'self'; script-src 'self'"
  },
  "content_scripts": [
    {
      "js": [
        "parser.js"
      ],
      "world": "MAIN",
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://localhost/*",
        "*://web.getcarbly.com/*",
        "*://web-staging.getcarbly.com/*",
        "*://uat.getcarbly.com/*",
        "*://mail.google.com/*"
      ]
    },
    {
      "js": [
        "content.js"
      ],
      "world": "ISOLATED",
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://localhost/*",
        "*://web.getcarbly.com/*",
        "*://web-staging.getcarbly.com/*",
        "*://uat.getcarbly.com/*",
        "*://mail.google.com/*"
      ]
    }
  ]
}