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\/*" ] } ] } |