Gather Auto Teleport

Gather Auto Teleport

Automatic teleportation extension for gather.town.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gather Auto Teleport",
  "version": "1.0.4",
  "description": "Automatic teleportation extension for gather.town.",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.gather.town/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "alarms",
    "storage",
    "notifications"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js",
        "content.js"
      ],
      "matches": [
        "https://app.gather.town/*"
      ]
    }
  ]
}