Strava in Celsius

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

Co to jest Strava in Celsius?

Strava in Celsius to rozszerzenie Chrome opracowane przez Phil Garner, a jego główną funkcją jest „Changes Strava temperatures from Fahrenheit to Celsius while still using other Imperial units.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Strava in Celsius

Pobierz pliki rozszerzeń Strava in Celsius w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Strava in Celsius Strava in Celsius
ID jlgbeobeddnoijopjdaadgomcmmlbjni
Oficjalny URL https://chrome.google.com/webstore/detail/strava-in-celsius/jlgbeobeddnoijopjdaadgomcmmlbjni
Opis Changes Strava temperatures from Fahrenheit to Celsius while still using other Imperial units.
Rozmiar pliku 49.68 KB
Liczba instalacji 376
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2016-01-17
Data Publikacji 2016-01-17
Ocena 5.00/5 Łącznie 7 Oceny
Deweloper Phil Garner
Typ Płatności free
Strona Rozszerzenia http://www.philipgarner.co.uk
Obsługiwane Języki 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"
    ]
}