Gather Auto Teleport

Automatic teleportation extension for gather.town.

Apa itu Gather Auto Teleport?

Gather Auto Teleport adalah ekstensi Chrome yang dikembangkan oleh ellreka, dan fitur utamanya adalah "Automatic teleportation extension for gather.town.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Gather Auto Teleport

Unduh file ekstensi Gather Auto Teleport dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Gather Auto Teleport Gather Auto Teleport
ID injoakgeofihmikhnmifmniakkdbnjpl
URL Resmi https://chromewebstore.google.com/detail/gather-auto-teleport/injoakgeofihmikhnmifmniakkdbnjpl
Deskripsi Automatic teleportation extension for gather.town.
Ukuran File 82.01 KB
Jumlah Instalasi 167
Versi Saat Ini 1.0.4
Terakhir Diperbarui 2022-07-18
Tanggal Publikasi 2022-06-23
Penilaian 5.00/5 Total 1 Penilaian
Pengembang ellreka
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/ellreka/gather-auto-teleport
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}