Strava Kudos (timer)
Auto-Kudos Activities. Includes timer option to refresh and give kudos.
什麼是Strava Kudos (timer)?
Strava Kudos (timer)是由mnunes開發的Chrome擴展程式,該擴展的主要功能是“Auto-Kudos Activities. Includes timer option to refresh and give kudos.”。
擴展截圖
下載Strava Kudos (timer)擴展crx文件
下載Strava Kudos (timer)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | hiklhbmhkahfkppcgoipldpifpgamlbj |
| 官方網址 | https://chromewebstore.google.com/detail/strava-kudos-timer/hiklhbmhkahfkppcgoipldpifpgamlbj |
| 簡介 | Auto-Kudos Activities. Includes timer option to refresh and give kudos. |
| 檔案大小 | 49.27 KB |
| 安裝次數 | 732 |
| 目前版本 | 0.1.27 |
| 更新時間 | 2023-08-30 |
| 上架時間 | 2022-09-21 |
| 評分 | 3.50/5 共 2 次評分 |
| 開發者 | mnunes |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/senunpm/StravaKudos |
| 支援的語言 | 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"
]
}
]
} | |