Strava Kudos (timer)
Auto-Kudos Activities. Includes timer option to refresh and give kudos.
Vad är Strava Kudos (timer)?
Strava Kudos (timer) är en Chrome-tillägg utvecklad av mnunes, och dess huvudfunktion är "Auto-Kudos Activities. Includes timer option to refresh and give kudos.".
Tilläggsskärmbilder
Ladda ner Strava Kudos (timer)-förlängningens CRX-fil
Ladda ner Strava Kudos (timer)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Strava Kudos (timer) is a Chrome Extension that gives Kudos to other Strava users' activities. It is a fork from the original Strava Kudos, extending it with two additional options. - Auto Kudos - If set to enable, it will press the button for you after a couple of seconds. - Auto Refresh Page - If enabled, it will refresh the page's current Strava page on the set interval. Update 0.1.27 - Minor fix to avoid infinite loop on the dashboard for group activities. Update 0.1.24 - Minor fix to avoid infinite loop on the 'my_activity' dashboard page.
Grundläggande Information om Tillägg
Namn | Strava Kudos (timer) |
ID | hiklhbmhkahfkppcgoipldpifpgamlbj |
Officiell webbadress | https://chromewebstore.google.com/detail/strava-kudos-timer/hiklhbmhkahfkppcgoipldpifpgamlbj |
Beskrivning | Auto-Kudos Activities. Includes timer option to refresh and give kudos. |
Filstorlek | 49.27 KB |
Antal Installationer | 732 |
Aktuell Version | 0.1.27 |
Senast Uppdaterad | 2023-08-30 |
Publiceringsdatum | 2022-09-21 |
Betyg | 3.50/5 Totalt 2 Betyg |
Utvecklare | mnunes |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/senunpm/StravaKudos |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Strava Kudos (timer)", "description": "Auto-Kudos Activities. Includes timer option to refresh and give kudos.", "version": "0.1.27", "permissions": [ "storage" ], "action": { "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "default_title": "Strava Kudos" }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "https:\/\/www.strava.com\/dashboard*", "https:\/\/www.strava.com\/athletes\/*", "https:\/\/www.strava.com\/clubs\/*" ], "js": [ ".\/index.js" ] } ] } |