Komoot extension
This extension allow us to export the Komoot track in a GPX file.
Komoot extension क्या है?
Komoot extension Álex द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allow us to export the Komoot track in a GPX file."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Komoot extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 =)
एक्सटेंशन की मूल जानकारी
नाम | Komoot extension |
ID | mebocpjllbfkgbloljnbeghaaedcjopd |
आधिकारिक URL | https://chromewebstore.google.com/detail/komoot-extension/mebocpjllbfkgbloljnbeghaaedcjopd |
विवरण | This extension allow us to export the Komoot track in a GPX file. |
फ़ाइल का आकार | 26.25 KB |
स्थापना संख्या | 3,518 |
वर्तमान संस्करण | 1.12 |
अंतिम अपडेट | 2024-01-22 |
प्रकाशन तिथि | 2022-04-06 |
रेटिंग | 4.90/5 कुल 39 रेटिंग्स |
डेवलपर | Álex |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://komoot-extension.vercel.app |
सहायता पृष्ठ URL | https://komoot-extension.vercel.app |
समर्थित भाषाएँ | 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" } } |