Gather Auto Teleport
Automatic teleportation extension for gather.town.
ما هو Gather Auto Teleport؟
Gather Auto Teleport هو إضافة Chrome تم تطويرها بواسطة ellreka، والميزة الرئيسية لها هي "Automatic teleportation extension for gather.town.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Gather Auto Teleport
قم بتنزيل ملفات الامتداد Gather Auto Teleport بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
== Features == - Teleport to a specified location. - Automatically teleport at a specified time each day.
معلومات أساسية عن التمديد
الاسم | |
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\/*" ] } ] } |