Strava feed filter
Hide virtual rides, commutes and other cruft from Activity Feed.
Cos'è Strava feed filter?
Strava feed filter è un'estensione di Chrome sviluppata da yemble, e la sua funzione principale è "Hide virtual rides, commutes and other cruft from Activity Feed.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Strava feed filter
Scarica i file di estensione Strava feed filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Optionally hide virtual (eg trainer) activities, commutes and other cruft from the activity feed. 2021-09-08 Updated for recent markup changes.
Informazioni di Base sull'Estensione
Nome | |
ID | apgekmclgmnmpmbpofncpclmladojgbf |
URL Ufficiale | https://chrome.google.com/webstore/detail/apgekmclgmnmpmbpofncpclmladojgbf |
Descrizione | Hide virtual rides, commutes and other cruft from Activity Feed. |
Dimensione del File | 44.71 KB |
Conteggio Installazioni | 172 |
Versione Corrente | 2.4.2 |
Ultimo Aggiornamento | 2021-09-09 |
Data di Pubblicazione | 2017-10-16 |
Valutazione | 3.40/5 Totale 5 Valutazioni |
Sviluppatore | yemble |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/yemble/chrome-strava-filter |
Lingue Supportate | 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\/*" ] } ] } |