VMware Horizon Geolocation Redirection

VMware Horizon Geolocation Redirection

Chrome extension to enable Geolocation Redirection inside VMware Horizon Agent.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_ExtensionName__",
  "version": "8.10.0.0",
  "version_name": "8.10.0.0",
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhZzko3du/hu72Heznb5NMSXFmZb3bHRG8oWkluqJXzvr2IFspGLpu/Fmi59NTZi+7hqVHuSs8NpPGvGsx/j65AtPnS6fumo45+oLCjphMQnoS8hytqf88J2exsvJT44Pw+SHabZVLitQXqcspxnniyMRD5oRkh9kQfRSNKOVQkfuiUKta3T8Qazi69airOm+12DbJfHNzcmUdTA/303Jk9hEbn+dVMzer+EbrEPAywgxf2Nl9iFpfnbo5GvJSvcsgKodFf/LrZtX2QFkaVBPDFIkvXJThbFuk11YQ63x4kM6xQ4N4y7gu3EdkmRzZi21DsXXYiVSHH2dm1UR2+J6uQIDAQAB",
  "description": "__MSG_ExtensionDescription__",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "nativeMessaging"
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "geoRedir.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injectGeoScript.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "action": {
    "default_icon": "icon-16.png"
  }
}