WME Validator

WME Validator

Validates a map area in Waze Map Editor, highlights issues and generates a very detailed report with wiki references and solutions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WME Validator",
  "short_name": "Validator",
  "version": "2024.01.26",
  "description": "Validates a map area in Waze Map Editor, highlights issues and generates a very detailed report with wiki references and solutions",
  "homepage_url": "https://www.waze.com/forum/viewtopic.php?t=76488",
  "icons": {
    "16": "WV-icon16.png",
    "48": "WV-icon48.png",
    "128": "WV-icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://beta.waze.com/*editor*",
        "https://www.waze.com/*editor*"
      ],
      "exclude_matches": [
        "https://www.waze.com/*user/*editor/*"
      ],
      "js": [
        "bootstrap.user.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "WME_Validator.user.js"
  ]
}