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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
== 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\/*" ] } ] } |