Strava Kudos
Auto-Kudos activities
Was ist Strava Kudos?
Strava Kudos ist eine Chrome-Erweiterung, die von o2dazone entwickelt wurde, und ihr Hauptmerkmal ist "Auto-Kudos activities".
Erweiterungsscreenshots
Strava Kudos-Erweiterungs-CRX-Datei herunterladen
Laden Sie Strava Kudos-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Feeling overwhelmed with providing Kudos to everyone on your following list? This extension provides a single-click to thumbs up everyone's activities, whether you actually looked at them, or just reciprocating Kudos. This currently works on your live feed as well as Clubs. If you find any issues, or would like future enhancements, or would like to simply look at the code, please visit https://github.com/o2dazone/StravaKudos Note: Strava throttles your account if you attempt to Kudos too many activities in one session.
Grundlegende Informationen zur Erweiterung
Name | |
ID | fmgpfcolhjopnnbklpambicfacbbhbac |
Offizielle URL | https://chrome.google.com/webstore/detail/strava-kudos/fmgpfcolhjopnnbklpambicfacbbhbac |
Beschreibung | Auto-Kudos activities |
Dateigröße | 11.05 KB |
Installationsanzahl | 6,000 |
Aktuelle Version | 0.13 |
Letztes Update | 2021-08-01 |
Veröffentlichungsdatum | 2018-10-31 |
Bewertung | 3.98/5 Insgesamt 56 Bewertungen |
Entwickler | o2dazone |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/o2dazone/StravaKudos |
Hilfeseite URL | https://github.com/o2dazone/StravaKudos/issues |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "manifest_version": 2, "name": "Strava Kudos", "description": "Auto-Kudos activities", "version": "0.13", "browser_action": { "default_icon": "icon.png" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "matches": [ "https:\/\/www.strava.com\/dashboard*", "https:\/\/www.strava.com\/athletes\/*", "https:\/\/www.strava.com\/clubs\/*" ], "js": [ ".\/index.js" ] } ] } |