Strava Kudos
Auto-Kudos activities
什么是Strava Kudos?
Strava Kudos是由o2dazone开发的Chrome扩展程序,该扩展的主要功能是“Auto-Kudos activities”。
扩展截图
下载Strava Kudos扩展crx文件
下载Strava Kudos扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | fmgpfcolhjopnnbklpambicfacbbhbac |
官方URL | https://chrome.google.com/webstore/detail/strava-kudos/fmgpfcolhjopnnbklpambicfacbbhbac |
简介 | Auto-Kudos activities |
文件大小 | 11.05 KB |
安装次数 | 6,000 |
当前版本 | 0.13 |
更新时间 | 2021-08-01 |
上架时间 | 2018-10-31 |
评分 | 3.98/5 共56次评分 |
开发者 | o2dazone |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/o2dazone/StravaKudos |
帮助页面URL | https://github.com/o2dazone/StravaKudos/issues |
支持的语言 | 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" ] } ] } |