Gather Auto Teleport

Automatic teleportation extension for gather.town.

Gather Auto Teleport là gì?

Gather Auto Teleport là một tiện ích mở rộng Chrome được phát triển bởi ellreka, và tính năng chính của nó là "Automatic teleportation extension for gather.town.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gather Auto Teleport

Tải xuống các tệp mở rộng Gather Auto Teleport dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        == Features ==
- Teleport to a specified location.
- Automatically teleport at a specified time each day.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gather Auto Teleport Gather Auto Teleport
ID injoakgeofihmikhnmifmniakkdbnjpl
URL Chính Thức https://chromewebstore.google.com/detail/gather-auto-teleport/injoakgeofihmikhnmifmniakkdbnjpl
Mô tả Automatic teleportation extension for gather.town.
Kích Thước Tệp 82.01 KB
Số Lần Cài Đặt 167
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2022-07-18
Ngày Phát Hành 2022-06-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển ellreka
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ellreka/gather-auto-teleport
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}