Gather Auto Teleport
Automatic teleportation extension for gather.town.
O que é Gather Auto Teleport?
Gather Auto Teleport é uma extensão do Chrome desenvolvida por ellreka, e sua principal característica é "Automatic teleportation extension for gather.town.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Gather Auto Teleport
Baixe arquivos de extensão Gather Auto Teleport no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
== Features == - Teleport to a specified location. - Automatically teleport at a specified time each day.
Informações Básicas da Extensão
Nome | Gather Auto Teleport |
ID | injoakgeofihmikhnmifmniakkdbnjpl |
URL Oficial | https://chromewebstore.google.com/detail/gather-auto-teleport/injoakgeofihmikhnmifmniakkdbnjpl |
Descrição | Automatic teleportation extension for gather.town. |
Tamanho do Arquivo | 82.01 KB |
Contagem de Instalações | 167 |
Versão Atual | 1.0.4 |
Última Atualização | 2022-07-18 |
Data de Publicação | 2022-06-23 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | ellreka |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/ellreka/gather-auto-teleport |
Idiomas Suportados | 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\/*" ] } ] } |