WME RADAR ICON

WME RADAR ICON

Substitui o ícone de Radar pela velocidade Real

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 RADAR ICON",
  "version": "0.2",
  "description": "Substitui o ícone de Radar pela velocidade Real",
  "icons": {
    "48": "128px.png",
    "128": "128px.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.waze.com/*/editor*",
        "https://www.waze.com/editor*",
        "https://beta.waze.com/*/editor*",
        "https://beta.waze.com/editor*"
      ],
      "js": [
        "bootradar.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "wme_radar_icon.js"
      ],
      "matches": [
        "https://www.waze.com/*",
        "https://beta.waze.com/*"
      ]
    }
  ]
}