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插件。
扩展使用说明
扩展基本信息
名称 | Kudosible – Hotkeys for Strava Kudos |
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 |
电子邮箱 | [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" ] } ] } |