Gather Auto Teleport
Automatic teleportation extension for gather.town.
Cos'è Gather Auto Teleport?
Gather Auto Teleport è un'estensione di Chrome sviluppata da ellreka, e la sua funzione principale è "Automatic teleportation extension for gather.town.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gather Auto Teleport
Scarica i file di estensione Gather Auto Teleport in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
== Features ==
- Teleport to a specified location.
- Automatically teleport at a specified time each day. Informazioni di Base sull'Estensione
| Nome | |
| ID | injoakgeofihmikhnmifmniakkdbnjpl |
| URL Ufficiale | https://chromewebstore.google.com/detail/gather-auto-teleport/injoakgeofihmikhnmifmniakkdbnjpl |
| Descrizione | Automatic teleportation extension for gather.town. |
| Dimensione del File | 82.01 KB |
| Conteggio Installazioni | 167 |
| Versione Corrente | 1.0.4 |
| Ultimo Aggiornamento | 2022-07-18 |
| Data di Pubblicazione | 2022-06-23 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | ellreka |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/ellreka/gather-auto-teleport |
| Lingue Supportate | 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\/*"
]
}
]
} | |