Running App Activity exporter
Export activity files from various fitness sites
ما هو Running App Activity exporter؟
Running App Activity exporter هو إضافة Chrome تم تطويرها بواسطة EMurph، والميزة الرئيسية لها هي "Export activity files from various fitness sites".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Running App Activity exporter
قم بتنزيل ملفات الامتداد Running App Activity exporter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Export all of your activities from mapmrun so that you can import them into runkeeper or strava. Once installed a new button will appear on mapmyrun.com saying "Export All" This extension is BETA so make sure to check that all the necessary files get downloaded after completion.
معلومات أساسية عن التمديد
الاسم | Running App Activity exporter |
ID | jemebipipmiobojajamcjldcjlibhndg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/running-app-activity-expo/jemebipipmiobojajamcjldcjlibhndg |
الوصف | Export activity files from various fitness sites |
حجم الملف | 42.75 KB |
عدد التثبيتات | 49 |
النسخة الحالية | 26 |
آخر تحديث | 2017-08-14 |
تاريخ النشر | 2017-08-14 |
تقييم | 4.67/5 مجموع تقييمات 3 |
المطور | EMurph |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Running App Activity exporter", "description": "Export activity files from various fitness sites", "version": "26", "permissions": [ "activeTab" ], "icons": { "19": "icon_16.png", "38": "icon_48.png", "128": "icon_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*.mapmyrun.com\/*", "https:\/\/*.mapmyrun.com\/*", "https:\/\/*.runkeeper.com\/*", "https:\/\/*.strava.com\/*" ], "js": [ "jquery.js", "myscript.js" ] } ], "browser_action": { "default_title": "Export my TCX files", "default_icon": "icon_128.png" }, "manifest_version": 2 } |