Komoot extension
This extension allow us to export the Komoot track in a GPX file.
Vad är Komoot extension?
Komoot extension är en Chrome-tillägg utvecklad av Álex, och dess huvudfunktion är "This extension allow us to export the Komoot track in a GPX file.".
Tilläggsskärmbilder
Ladda ner Komoot extension-förlängningens CRX-fil
Ladda ner Komoot extension-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
This extension adds a "Download GPX" button to download the file, no matter which regions you have.
If you like this extension, please rate us =) Grundläggande Information om Tillägg
| Namn | |
| ID | mebocpjllbfkgbloljnbeghaaedcjopd |
| Officiell webbadress | https://chromewebstore.google.com/detail/komoot-extension/mebocpjllbfkgbloljnbeghaaedcjopd |
| Beskrivning | This extension allow us to export the Komoot track in a GPX file. |
| Filstorlek | 26.25 KB |
| Antal Installationer | 3,518 |
| Aktuell Version | 1.12 |
| Senast Uppdaterad | 2024-01-22 |
| Publiceringsdatum | 2022-04-06 |
| Betyg | 4.90/5 Totalt 39 Betyg |
| Utvecklare | Álex |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://komoot-extension.vercel.app |
| Hjälpsida URL | https://komoot-extension.vercel.app |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Komoot extension",
"description": "This extension allow us to export the Komoot track in a GPX file.",
"version": "1.12",
"manifest_version": 3,
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.komoot.es\/*",
"https:\/\/www.komoot.it\/*",
"https:\/\/www.komoot.com\/*",
"https:\/\/www.komoot.fr\/*",
"https:\/\/www.komoot.nl\/*",
"https:\/\/www.komoot.de\/*"
],
"js": [
"tracker.js",
"translations.js",
"exporter-script.js"
]
}
],
"action": {
"default_popup": "popup\/index.html"
}
} | |