Gather Auto Teleport

Automatic teleportation extension for gather.town.

Co to jest Gather Auto Teleport?

Gather Auto Teleport to rozszerzenie Chrome opracowane przez ellreka, a jego główną funkcją jest „Automatic teleportation extension for gather.town.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Gather Auto Teleport

Pobierz pliki rozszerzeń Gather Auto Teleport w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Gather Auto Teleport Gather Auto Teleport
ID injoakgeofihmikhnmifmniakkdbnjpl
Oficjalny URL https://chromewebstore.google.com/detail/gather-auto-teleport/injoakgeofihmikhnmifmniakkdbnjpl
Opis Automatic teleportation extension for gather.town.
Rozmiar pliku 82.01 KB
Liczba instalacji 167
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2022-07-18
Data Publikacji 2022-06-23
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper ellreka
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ellreka/gather-auto-teleport
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}