Strava in Celsius

Changes Strava temperatures from Fahrenheit to Celsius while still using other Imperial units.

Vad är Strava in Celsius?

Strava in Celsius är en Chrome-tillägg utvecklad av Phil Garner, och dess huvudfunktion är "Changes Strava temperatures from Fahrenheit to Celsius while still using other Imperial units.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Strava in Celsius-förlängningens CRX-fil

Ladda ner Strava in Celsius-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        At the moment Strava doesn't let you pick customised units so you can't have a mixture of miles and Celsius. This extension converts Fahrenheit to Celsius while still keeping all other Imperial units.                    

Grundläggande Information om Tillägg

Namn Strava in Celsius Strava in Celsius
ID jlgbeobeddnoijopjdaadgomcmmlbjni
Officiell webbadress https://chrome.google.com/webstore/detail/strava-in-celsius/jlgbeobeddnoijopjdaadgomcmmlbjni
Beskrivning Changes Strava temperatures from Fahrenheit to Celsius while still using other Imperial units.
Filstorlek 49.68 KB
Antal Installationer 376
Aktuell Version 0.1
Senast Uppdaterad 2016-01-17
Publiceringsdatum 2016-01-17
Betyg 5.00/5 Totalt 7 Betyg
Utvecklare Phil Garner
Betalningssätt free
Tilläggswebbplats http://www.philipgarner.co.uk
Stödda Språk de,en,fr,nl,es,it,pt-BR,pt-PT
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.1",
    "default_locale": "en",
    "icons": {
        "16": "img\/logo16.png",
        "48": "img\/logo48.png",
        "128": "img\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/activities\/*",
                "http:\/\/www.strava.com\/activities\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "jquery-observe.js",
                "strava_celsius.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}