Kudosible – Hotkeys for Strava Kudos
A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.
Kudosible – Hotkeys for Strava Kudosとは何ですか?
Kudosible – Hotkeys for Strava KudosはDave Hughesによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.」です。
拡張機能のスクリーンショット
Kudosible – Hotkeys for Strava Kudos拡張機能のCRXファイルをダウンロード
Kudosible – Hotkeys for Strava Kudos拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
| 名前 | |
| ID | cfmeifdjbilambnhoidkjfobhphhmhhl |
| 公式URL | https://chromewebstore.google.com/detail/kudosible-%E2%80%93-hotkeys-for-s/cfmeifdjbilambnhoidkjfobhphhmhhl |
| 説明 | A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava. |
| ファイルサイズ | 160 KB |
| インストール数 | 237 |
| 現在のバージョン | 0.61 |
| 最終更新日 | 2019-01-08 |
| 公開日 | 2019-01-08 |
| 評価 | 3.00/5 合計 2 レビュー |
| 開発者 | Dave Hughes |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/dlh3/Kudosible |
| 対応言語 | en |
| manifest.json | |
{
"manifest_version": 2,
"name": "Kudosible \u2013 Hotkeys for Strava Kudos",
"short_name": "Kudosible",
"description": "A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.",
"version": "0.61",
"author": "Dave Hughes",
"homepage_url": "https:\/\/github.com\/dlh3\/Kudosible",
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"permissions": [
"tabs"
],
"browser_action": {
"default_icon": "icon.png",
"default_title": "Kudosible"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/www.strava.com\/dashboard*",
"https:\/\/www.strava.com\/athletes\/*",
"https:\/\/www.strava.com\/clubs\/*"
],
"js": [
".\/index.js"
]
}
]
} | |