BMW MyGarage Chrome Trick

BMW MyGarage Chrome Trick

Chrome trick to expose additional vehicle data.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BMW MyGarage Chrome Trick",
  "description": "Chrome trick to expose additional vehicle data.",
  "version": "1.0.1",
  "manifest_version": 3,
  "action": {
    "default_title": "BMW MyGarage Chrome Trick",
    "default_icon": "icon128.png",
    "icons": {
      "16": "icon16.png",
      "36": "icon36.png",
      "128": "icon128.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "before.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    },
    {
      "run_at": "document_idle",
      "js": [
        "after.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "options.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}