WME Toolbox

WME Toolbox

Adds many features to the Waze editor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "WME Toolbox",
  "icons": {
    "16": "images/logo-16.png",
    "64": "images/logo-64.png",
    "128": "images/logo-128.png"
  },
  "version": "1.9.32",
  "description": "Adds many features to the Waze editor",
  "content_scripts": [
    {
      "exclude_matches": [
        "https://www.waze.com/user/*",
        "https://www.waze.com/*/user/*"
      ],
      "matches": [
        "https://www.waze.com/editor*",
        "https://www.waze.com/*/editor*",
        "https://beta.waze.com/editor*",
        "https://beta.waze.com/*/editor*"
      ],
      "js": [
        "scripts/bootstrap.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/*.js",
        "images/*.*",
        "css/*.css",
        "css/images/*.*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://spreadsheets.google.com/",
    "https://docs.google.com/"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  }
}