Gather Auto Teleport

Automatic teleportation extension for gather.town.

Wat is Gather Auto Teleport?

Gather Auto Teleport is een Chrome-extensie ontwikkeld door ellreka, en de belangrijkste functie is "Automatic teleportation extension for gather.town.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Gather Auto Teleport

Download Gather Auto Teleport-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Gather Auto Teleport Gather Auto Teleport
ID injoakgeofihmikhnmifmniakkdbnjpl
Officiële URL https://chromewebstore.google.com/detail/gather-auto-teleport/injoakgeofihmikhnmifmniakkdbnjpl
Beschrijving Automatic teleportation extension for gather.town.
Bestandsgrootte 82.01 KB
Aantal Installaties 167
Huidige Versie 1.0.4
Laatst Bijgewerkt 2022-07-18
Publicatiedatum 2022-06-23
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar ellreka
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ellreka/gather-auto-teleport
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}