Strava Helper

Some tweaks for Strava. Adds a "Give Kudos to All" button, removes clutter and provides UI tweaks.

Strava Helperคืออะไร?

Strava Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.marcusjaschen.de และคุณลักษณะหลักของมันคือ "Some tweaks for Strava. Adds a "Give Kudos to All" button, removes clutter and provides UI tweaks."

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

screenshot

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

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

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

                        This Chrome extension aims to provide some tweaks for the Strava Website. Follow @strava_helper on Twitter for Updates!

Give Kudos to All

A button in the upper left of every Strava page can be used to give Kudos to all visible activities. It saves you a lot of time and your Strava friends get the litte dose of motivation they deserve!

Remove Clutter

Removes all social media and premium clutter from the dashboard and activity pages, such as:

    “Find friends”
    “Upcoming events”
    “Discover more”
    “Follow suggestions”
    Promotional footer at the bottom
    “Shop” link
    “Get Premium” link
    “Get Premium” box on dashboard
    “Get Premium” boxes on profile page
    Social media dropdown menu in activity feed
    “Create target” link
    Social media buttons on activity detail page and Flyby page
    Zwift activities
    Peloton activities
    Achievement celebrations in feed

UI tweaks

    Pins the top navigation to the top! Scroll and don’t get lost!
    Adds a link to VeloViewer to the main navigation bar
    Adds a deep link to the VeloViewer activity details page (next to the Flyby link)

Contributors

    saesh
    Marcus Jaschen
    wwcsig                    

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

ชื่อ Strava Helper Strava Helper
ID cjpohikmkjccgnmokkcjlncgaaeooade
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/strava-helper/cjpohikmkjccgnmokkcjlncgaaeooade
คำอธิบาย Some tweaks for Strava. Adds a "Give Kudos to All" button, removes clutter and provides UI tweaks.
ขนาดไฟล์ 64.97 KB
จำนวนการติดตั้ง 2,027
เวอร์ชันปัจจุบัน 1.1.3
อัปเดตครั้งล่าสุด 2021-11-23
วันที่เผยแพร่ 2020-05-25
คะแนน 3.85/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา https://www.marcusjaschen.de
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mjaschen/strava-helper-firefox
URL หน้าช่วยเหลือ https://github.com/mjaschen/strava-helper-firefox/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Strava Helper",
    "description": "Some tweaks for Strava. Adds a \"Give Kudos to All\" button, removes clutter and provides UI tweaks.",
    "version": "1.1.3",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/*"
            ],
            "css": [
                "assets\/css\/strava-helper.css"
            ],
            "js": [
                "assets\/js\/jquery-3.6.0.min.js",
                "assets\/js\/strava_helper.root.js",
                "assets\/js\/strava_helper.util.js",
                "assets\/js\/strava_helper.cleanup.js",
                "assets\/js\/strava_helper.kudos_all.js",
                "assets\/js\/strava_helper.navbar.js",
                "assets\/js\/strava_helper.veloviewer.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/img\/kudos_all.png",
                "assets\/img\/logo-strava-helper-labs.svg"
            ],
            "matches": [
                "https:\/\/www.strava.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "assets\/img\/logo16.png",
        "32": "assets\/img\/logo32.png",
        "48": "assets\/img\/logo48.png",
        "64": "assets\/img\/logo64.png",
        "128": "assets\/img\/logo128.png"
    },
    "options_ui": {
        "page": "assets\/html\/options.html"
    }
}