Gather Auto Teleport
Automatic teleportation extension for gather.town.
Τι είναι το Gather Auto Teleport;
Το Gather Auto Teleport είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ellreka, και η κύρια λειτουργία του είναι "Automatic teleportation extension for gather.town.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gather Auto Teleport
Λήψη αρχείων επέκτασης Gather Auto Teleport σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
== Features == - Teleport to a specified location. - Automatically teleport at a specified time each day.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Gather Auto Teleport |
ID | injoakgeofihmikhnmifmniakkdbnjpl |
Επίσημο URL | https://chromewebstore.google.com/detail/gather-auto-teleport/injoakgeofihmikhnmifmniakkdbnjpl |
Περιγραφή | Automatic teleportation extension for gather.town. |
Μέγεθος Αρχείου | 82.01 KB |
Αριθμός Εγκαταστάσεων | 167 |
Τρέχουσα Έκδοση | 1.0.4 |
Τελευταία Ενημέρωση | 2022-07-18 |
Ημερομηνία Δημοσίευσης | 2022-06-23 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | ellreka |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/ellreka/gather-auto-teleport |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } ] } |