Gather Auto Teleport

Automatic teleportation extension for gather.town.

Gather Auto Teleportとは何ですか?

Gather Auto Teleportはellrekaによって開発されたChromeの拡張機能で、その主な機能は「Automatic teleportation extension for gather.town.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Gather Auto Teleport拡張機能のCRXファイルをダウンロード

Gather Auto Teleport拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Gather Auto Teleport 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
Eメール [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\/*"
            ]
        }
    ]
}