Strava feed filter
Hide virtual rides, commutes and other cruft from Activity Feed.
Co to jest Strava feed filter?
Strava feed filter to rozszerzenie Chrome opracowane przez yemble, a jego główną funkcją jest „Hide virtual rides, commutes and other cruft from Activity Feed.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Strava feed filter
Pobierz pliki rozszerzeń Strava feed filter 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
Optionally hide virtual (eg trainer) activities, commutes and other cruft from the activity feed. 2021-09-08 Updated for recent markup changes.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | apgekmclgmnmpmbpofncpclmladojgbf |
Oficjalny URL | https://chrome.google.com/webstore/detail/apgekmclgmnmpmbpofncpclmladojgbf |
Opis | Hide virtual rides, commutes and other cruft from Activity Feed. |
Rozmiar pliku | 44.71 KB |
Liczba instalacji | 172 |
Aktualna Wersja | 2.4.2 |
Ostatnia Aktualizacja | 2021-09-09 |
Data Publikacji | 2017-10-16 |
Ocena | 3.40/5 Łącznie 5 Oceny |
Deweloper | yemble |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/yemble/chrome-strava-filter |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Strava feed filter", "description": "Hide virtual rides, commutes and other cruft from Activity Feed.", "version": "2.4.2", "permissions": [ "storage" ], "icons": { "128": "strava2-f1.128px.png" }, "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "js": [ "jquery-3.1.1.min.js", "app.js" ], "matches": [ "*:\/\/www.strava.com\/dashboard", "*:\/\/www.strava.com\/dashboard?*", "*:\/\/www.strava.com\/dashboard\/*" ] } ] } |