Gather Auto Teleport
Automatic teleportation extension for gather.town.
Vad är Gather Auto Teleport?
Gather Auto Teleport är en Chrome-tillägg utvecklad av ellreka, och dess huvudfunktion är "Automatic teleportation extension for gather.town.".
Tilläggsskärmbilder
Ladda ner Gather Auto Teleport-förlängningens CRX-fil
Ladda ner Gather Auto Teleport-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
== Features ==
- Teleport to a specified location.
- Automatically teleport at a specified time each day. Grundläggande Information om Tillägg
| Namn | |
| ID | injoakgeofihmikhnmifmniakkdbnjpl |
| Officiell webbadress | https://chromewebstore.google.com/detail/gather-auto-teleport/injoakgeofihmikhnmifmniakkdbnjpl |
| Beskrivning | Automatic teleportation extension for gather.town. |
| Filstorlek | 82.01 KB |
| Antal Installationer | 167 |
| Aktuell Version | 1.0.4 |
| Senast Uppdaterad | 2022-07-18 |
| Publiceringsdatum | 2022-06-23 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | ellreka |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/ellreka/gather-auto-teleport |
| Stödda Språk | 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\/*"
]
}
]
} | |