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.
拡張機能の基本情報
名前 | Strava Kudos (timer) |
ID | hiklhbmhkahfkppcgoipldpifpgamlbj |
公式URL | 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 |
Eメール | [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" ] } ] } |