Omnitracs Fix Google Maps

Omnitracs Fix Google Maps

Arregla el problema de que no se pueden visualizar los mapas en el AEF cuando se tiene configurado el navegador en español.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Omnitracs Fix Google Maps",
  "manifest_version": 2,
  "version": "1.0.1",
  "description": "Arregla el problema de que no se pueden visualizar los mapas en el AEF cuando se tiene configurado el navegador en español.",
  "author": "Manuel Ortiz",
  "homepage_url": "https://aef.cnrportal.com/aef",
  "background": {
    "persistent": true,
    "scripts": [
      "fixmapscript.js"
    ]
  },
  "icons": {
    "16": "logo_16.png",
    "48": "logo_48.png",
    "128": "logo_128.png"
  },
  "browser_action": {
    "default_icon": "logo_16.png",
    "default_title": "Omnitracs Fix Google Maps"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*.gstatic.com/",
    "https://*.gstatic.com/",
    "http://*.google.com/",
    "https://*.google.com/",
    "https://*.cnrportal.com/",
    "http://*.cnrportal.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://aef.cnrportal.com/*",
        "https://aef.cnrportal.com//*"
      ],
      "css": [],
      "js": [
        "fixmapscript.js"
      ]
    }
  ]
}