Strava Bulk Edit

A Chrome extension to edit multiple Strava activities at once.

Strava Bulk Editคืออะไร?

Strava Bulk Edit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MGHollander และคุณลักษณะหลักของมันคือ "A Chrome extension to edit multiple Strava activities at once."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Strava Bulk Edit

ดาวน์โหลดไฟล์ส่วนขยาย Strava Bulk Edit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The extension adds a title to the activity filter panel, and an update panel below the activity panel. It will go through all filtered activities and update then one by one.

[ Usage ]

1. Visit the My Activities page on Strava.com (https://www.strava.com/athlete/training).
2. Use the filters to select the activities you want to edit. 
3. Choose the privacy setting to apply to the selected activities. 
4. Click the "Update activities" button.

A loading screen will appear while the extension is updating the
activities on the background. The loading screen will close once the activities
have been updated.

[ Updating fields ]

Not all filtered activities have the fields available in the update panel. The
extension will just update the fields that are available for each individual
activity.

The gear lists might show legacy gear, because the extension copies the gear values
from the filter. Legacy gear will not be updated when you choose it in the
update panel, because it is not available in the activities.

[ Known issue ]

It is not possible to update the Run type field at the moment. This seams to be
an issue on the side of Strava. The code is available in the extension, but it is
disabled for now.

[ Roadmap ]

There are a few enhancements I like te make in the future. These are added as issues in the repository (https://github.com/MGHollander/strava-bulk-edit).

[ Feedback ]

Please feel free to give feedback, share ideas or report bugs. Email me at [email protected] or add an issue to the repository (https://github.com/MGHollander/strava-bulk-edit/issues).

[ Donate ] 

Buy me a beer -> https://paypal.me/mghollander                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Strava Bulk Edit Strava Bulk Edit
ID mkbkebdegldokaipfgficlleheeejfjg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/strava-bulk-edit/mkbkebdegldokaipfgficlleheeejfjg
คำอธิบาย A Chrome extension to edit multiple Strava activities at once.
ขนาดไฟล์ 33 KB
จำนวนการติดตั้ง 1,411
เวอร์ชันปัจจุบัน 1.3.2
อัปเดตครั้งล่าสุด 2022-04-13
วันที่เผยแพร่ 2020-06-22
คะแนน 4.93/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา MGHollander
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/MGHollander/strava-bulk-edit
URL หน้าช่วยเหลือ https://github.com/MGHollander/strava-bulk-edit/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Strava Bulk Edit",
    "description": "A Chrome extension to edit multiple Strava activities at once.",
    "author": "Marc Hollander ",
    "homepage_url": "https:\/\/github.com\/MGHollander\/strava-bulk-edit",
    "version": "1.3.2",
    "icons": {
        "16": "images\/strava-bulk-edit-logo-16.png",
        "32": "images\/strava-bulk-edit-logo-32.png",
        "48": "images\/strava-bulk-edit-logo-48.png",
        "128": "images\/strava-bulk-edit-logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/athlete\/training"
            ],
            "css": [
                "updateActivities.css"
            ],
            "js": [
                "updateActivities.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.strava.com\/"
    ],
    "action": {
        "default_title": "Strava Bulk Edit",
        "default_icon": {
            "16": "images\/strava-bulk-edit-logo-16.png",
            "32": "images\/strava-bulk-edit-logo-32.png",
            "48": "images\/strava-bulk-edit-logo-48.png",
            "128": "images\/strava-bulk-edit-logo-128.png"
        }
    }
}