Komoot extension

This extension allow us to export the Komoot track in a GPX file.

Co je Komoot extension?

Komoot extension je rozšíření Chrome vyvinuté Álex, a jeho hlavní funkcí je „This extension allow us to export the Komoot track in a GPX file.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Komoot extension

Stáhněte si soubory rozšíření Komoot extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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 =)                    

Základní Informace o Rozšíření

Název Komoot extension Komoot extension
ID mebocpjllbfkgbloljnbeghaaedcjopd
Oficiální URL https://chromewebstore.google.com/detail/komoot-extension/mebocpjllbfkgbloljnbeghaaedcjopd
Popis This extension allow us to export the Komoot track in a GPX file.
Velikost souboru 26.25 KB
Počet instalací 3,518
Aktuální Verze 1.12
Poslední Aktualizace 2024-01-22
Datum Vydání 2022-04-06
Hodnocení 4.90/5 Celkem 39 Hodnocení
Vývojář Álex
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://komoot-extension.vercel.app
URL Stránky Nápovědy https://komoot-extension.vercel.app
Podporované Jazyky 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"
    }
}