Gather Auto Teleport
Automatic teleportation extension for gather.town.
什么是Gather Auto Teleport?
Gather Auto Teleport是由ellreka开发的Chrome扩展程序,该扩展的主要功能是“Automatic teleportation extension for gather.town.”。
扩展截图
下载Gather Auto Teleport扩展crx文件
下载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\/*" ] } ] } |