Sauce for Strava™

Additional functionality for your cycling and running analysis. This extension upgrades the Strava™ website.

Sauce for Strava™คืออะไร?

Sauce for Strava™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sauce.llc และคุณลักษณะหลักของมันคือ "Additional functionality for your cycling and running analysis. This extension upgrades the Strava™ website."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        The Sauce extension upgrades Strava.com with better cycling and running information.  It's a simple, lightweight, open-source and pure client-side JavaScript addition. 

Feature Highlights:
 * Peak performance table:
   * Power
   * Normalized Power
   * xPower
   * Heart Rate
   * Pace
   * Grade Adjusted Pace
   * VAM (climbing speed)
   * Cadence
   * Sea Power (potential power at sea level)
 * Themes (including dark mode)
 * Export any activity to a FIT, TCX or GPX file
 * Create Live Segments for any effort (including downhills)
 * Running Power estimation
 * Kudo All Activities
 * Analysis page stats are extended to include:
   * Elapsed power average, normalized power, xPower, moving power average and watts/kg
   * Grade adjusted pace
   * TSS
   * Intensity Factory
   * VAM
   * Elevation gain/loss
   * Raw data and graph views
   * Sea Power
   * Pw:Hr / Aerobic Decoupling
 * Weight and FTP overrides for all athletes
 * Inline comments system for activity page
 * Performance Predictor
 * Dashboard features:
   * Hide virtual activities (except your own)
   * Hide promotions and challenges
   * Hide commutes
 * Responsive layout
 * Detailed Running segments
 * W'balance graphing
 * Analysis graph smoothing


Disclaimer:

I don't work for Strava nor have I interacted with any persons from Strava in the writing of this extension.  All the information used in this extension is readily available within the Strava.com website.                    

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

ชื่อ Sauce for Strava™ Sauce for Strava™
ID eigiefcapdcdmncdghkeahgfmnobigha
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sauce-for-strava/eigiefcapdcdmncdghkeahgfmnobigha
คำอธิบาย Additional functionality for your cycling and running analysis. This extension upgrades the Strava™ website.
ขนาดไฟล์ 1.14 MB
จำนวนการติดตั้ง 41,626
เวอร์ชันปัจจุบัน 8.3.2
อัปเดตครั้งล่าสุด 2023-11-15
วันที่เผยแพร่ 2020-07-02
คะแนน 4.72/5 รวมทั้งหมด 90 คะแนน
ผู้พัฒนา https://sauce.llc
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://sauce.llc
URL หน้าช่วยเหลือ https://sauce.llc/support
URL หน้านโยบายความเป็นส่วนตัว https://www.sauce.llc/sauce4strava/pages/privacy.html
ภาษาที่รองรับ de,en,fr,es,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "Sauce for Strava\u2122",
    "short_name": "Sauce",
    "description": "__MSG_app_desc__",
    "homepage_url": "https:\/\/www.sauce.llc",
    "author": "Sauce, LLC",
    "version": "8.3.2",
    "permissions": [
        "storage",
        "unlimitedStorage",
        "contextMenus",
        "alarms",
        "declarativeContent"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png"
    },
    "background": {
        "page": "pages\/bg.html",
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png",
            "48": "images\/icon48.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png",
            "256": "images\/icon256.png"
        },
        "default_title": "Sauce for Strava\u2122",
        "default_popup": "pages\/options.html?popup"
    },
    "options_ui": {
        "page": "pages\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.strava.com\/*"
            ],
            "css": [
                "css\/site\/common.css"
            ],
            "js": [
                "src\/ext\/webext.js",
                "src\/common\/base.js",
                "src\/common\/base_init.js",
                "src\/common\/proxy.js",
                "src\/ext\/proxy.js",
                "src\/common\/storage.js",
                "src\/ext\/locale.js",
                "src\/site\/preloader.js",
                "src\/ext\/boot.js"
            ]
        },
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.strava.com\/sauce\/*"
            ],
            "css": [
                "css\/site\/repurpose.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "build.json",
        "src\/*",
        "lib\/*",
        "css\/*",
        "templates\/*",
        "images\/*",
        "pages\/*"
    ],
    "minimum_chrome_version": "76"
}