Gather Auto Teleport
Automatic teleportation extension for gather.town.
Gather Auto Teleport क्या है?
Gather Auto Teleport ellreka द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatic teleportation extension for gather.town."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gather Auto Teleport एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
== Features == - Teleport to a specified location. - Automatically teleport at a specified time each day.
एक्सटेंशन की मूल जानकारी
नाम | 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\/*" ] } ] } |