Gather Auto Teleport
Automatic teleportation extension for gather.town.
Was ist Gather Auto Teleport?
Gather Auto Teleport ist eine Chrome-Erweiterung, die von ellreka entwickelt wurde, und ihr Hauptmerkmal ist "Automatic teleportation extension for gather.town.".
Erweiterungsscreenshots
Gather Auto Teleport-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gather Auto Teleport-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
== Features == - Teleport to a specified location. - Automatically teleport at a specified time each day.
Grundlegende Informationen zur Erweiterung
Name | Gather Auto Teleport |
ID | injoakgeofihmikhnmifmniakkdbnjpl |
Offizielle URL | https://chromewebstore.google.com/detail/gather-auto-teleport/injoakgeofihmikhnmifmniakkdbnjpl |
Beschreibung | Automatic teleportation extension for gather.town. |
Dateigröße | 82.01 KB |
Installationsanzahl | 167 |
Aktuelle Version | 1.0.4 |
Letztes Update | 2022-07-18 |
Veröffentlichungsdatum | 2022-06-23 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | ellreka |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/ellreka/gather-auto-teleport |
Unterstützte Sprachen | en |
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\/*" ] } ] } |