Strava Kudos
Auto-Kudos activities
Hvad er Strava Kudos?
Strava Kudos er en Chrome-udvidelse udviklet af o2dazone, og dens hovedfunktion er "Auto-Kudos activities".
Udvidelsesskærmbilleder
Download Strava Kudos-udvidelses-CRX-fil
Download Strava Kudos-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | fmgpfcolhjopnnbklpambicfacbbhbac |
Officiel URL | https://chrome.google.com/webstore/detail/strava-kudos/fmgpfcolhjopnnbklpambicfacbbhbac |
Beskrivelse | Auto-Kudos activities |
Filstørrelse | 11.05 KB |
Antal Installationer | 6,000 |
Nuværende Version | 0.13 |
Senest Opdateret | 2021-08-01 |
Udgivelsesdato | 2018-10-31 |
Bedømmelse | 3.98/5 Samlet 56 Bedømmelser |
Udvikler | o2dazone |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/o2dazone/StravaKudos |
Hjælpeside-URL | https://github.com/o2dazone/StravaKudos/issues |
Understøttede Sprog | 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" ] } ] } |