Gather Auto Teleport
Automatic teleportation extension for gather.town.
Hvad er Gather Auto Teleport?
Gather Auto Teleport er en Chrome-udvidelse udviklet af ellreka, og dens hovedfunktion er "Automatic teleportation extension for gather.town.".
Udvidelsesskærmbilleder
Download Gather Auto Teleport-udvidelses-CRX-fil
Download Gather Auto Teleport-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
== Features == - Teleport to a specified location. - Automatically teleport at a specified time each day.
Grundlæggende oplysninger om udvidelsen
Navn | Gather Auto Teleport |
ID | injoakgeofihmikhnmifmniakkdbnjpl |
Officiel URL | https://chromewebstore.google.com/detail/gather-auto-teleport/injoakgeofihmikhnmifmniakkdbnjpl |
Beskrivelse | Automatic teleportation extension for gather.town. |
Filstørrelse | 82.01 KB |
Antal Installationer | 167 |
Nuværende Version | 1.0.4 |
Senest Opdateret | 2022-07-18 |
Udgivelsesdato | 2022-06-23 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | ellreka |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/ellreka/gather-auto-teleport |
Understøttede Sprog | 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\/*" ] } ] } |