Komoot extension
This extension allow us to export the Komoot track in a GPX file.
什么是Komoot extension?
Komoot extension是由Álex开发的Chrome扩展程序,该扩展的主要功能是“This extension allow us to export the Komoot track in a GPX file.”。
扩展截图
下载Komoot extension扩展crx文件
下载Komoot extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |