Geosurf Pro

Geosurf Pro

Welcome to the next generation proxy solution, GeoSurf™ Pro chrome extension is an easy way to utilize the next generation of…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Geosurf Pro",
  "version": "7.0.2",
  "description": "",
  "manifest_version": 3,
  "homepage_url": "https://www.geosurf.com",
  "background": {
    "service_worker": "service_worker.js"
  },
  "action": {
    "default_icon": "icons/extension/default.png",
    "default_title": "GeoSurf",
    "default_popup": "popup/index.html"
  },
  "icons": {
    "18": "icons/extension/icon_18.png",
    "48": "icons/extension/icon_48.png",
    "128": "icons/extension/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "offscreen",
    "webRequestAuthProvider",
    "alarms",
    "proxy",
    "browsingData",
    "webRequest",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/scripts/location.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    },
    {
      "resources": [
        "/fonts/outfit/font-outfit.css",
        "/fonts/outfit/*.ttf"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}