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 |
官方網址 | 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\/*" ] } ] } |