Gather Auto Teleport
Automatic teleportation extension for gather.town.
What is Gather Auto Teleport?
Gather Auto Teleport is a Chrome extension developed by ellreka, and its main feature is "Automatic teleportation extension for gather.town.".
Extension Screenshots
Download Gather Auto Teleport Extension CRX File
Download Gather Auto Teleport extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
== Features == - Teleport to a specified location. - Automatically teleport at a specified time each day.
Extension Basic Information
Name | Gather Auto Teleport |
ID | injoakgeofihmikhnmifmniakkdbnjpl |
Official URL | https://chromewebstore.google.com/detail/gather-auto-teleport/injoakgeofihmikhnmifmniakkdbnjpl |
Description | Automatic teleportation extension for gather.town. |
File Size | 82.01 KB |
Installation Count | 167 |
Current Version | 1.0.4 |
Last Updated | 2022-07-18 |
Publish Date | 2022-06-23 |
Rating | 5.00/5 Total 1 Ratings |
Developer | ellreka |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ellreka/gather-auto-teleport |
Supported Languages | 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\/*" ] } ] } |