Gather Auto Teleport

Automatic teleportation extension for gather.town.

Gather Auto Teleportคืออะไร?

Gather Auto Teleport เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ellreka และคุณลักษณะหลักของมันคือ "Automatic teleportation extension for gather.town."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gather Auto Teleport

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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\/*"
            ]
        }
    ]
}