Strava Plus

This extension enhances Strava. You can show accumulated TSS on the training log.

Strava Plus क्या है?

Strava Plus https://www.cyclo.info द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension enhances Strava. You can show accumulated TSS on the training log."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Strava Plus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Change log:
- Fixed a critical bug: The extension doesn't work for you completely.


This extension extends Strava's training log page to show weekly accumulated TSS.

This is not official Strava extension but a Strava user made it to answer:
    https://support.strava.com/hc/en-us/community/posts/208836247-Include-weekly-accumulated-TSS-on-the-training-log                    

एक्सटेंशन की मूल जानकारी

नाम Strava Plus Strava Plus
ID cdjkehgklopnffaenjgmbmckkeiaengi
आधिकारिक URL https://chromewebstore.google.com/detail/strava-plus/cdjkehgklopnffaenjgmbmckkeiaengi
विवरण This extension enhances Strava. You can show accumulated TSS on the training log.
फ़ाइल का आकार 46.44 KB
स्थापना संख्या 960
वर्तमान संस्करण 1.1
अंतिम अपडेट 2016-09-08
प्रकाशन तिथि 2016-09-08
रेटिंग 1.80/5 कुल 5 रेटिंग्स
डेवलपर https://www.cyclo.info
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Strava Plus",
    "version": "1.1",
    "author": "Naoki Iwasaki",
    "description": "This extension enhances Strava. You can show accumulated TSS on the training log.",
    "icons": {
        "128": "image\/logo.png"
    },
    "background": {
        "scripts": [
            "js\/jquery-3.1.0.min.js",
            "js\/background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/athletes\/*\/training\/log",
                "https:\/\/www.strava.com\/athletes\/*\/training\/log?sport=Ride*"
            ],
            "js": [
                "js\/jquery-3.1.0.min.js",
                "js\/content_script\/main.js"
            ]
        }
    ],
    "permissions": [
        "identity",
        "storage",
        "https:\/\/www.strava.com\/*"
    ],
    "oauth2": {
        "client_id": "206151987354-vtf45di1880gm53k503rv8si584366b9.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.strava.com\/oauth\/authorize"
        ]
    }
}