Kudosible – Hotkeys for Strava Kudos
A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.
Wat is Kudosible – Hotkeys for Strava Kudos?
Kudosible – Hotkeys for Strava Kudos is een Chrome-extensie ontwikkeld door Dave Hughes, en de belangrijkste functie is "A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.".
Extensie Screenshots
Download het CRX-bestand van de extensie Kudosible – Hotkeys for Strava Kudos
Download Kudosible – Hotkeys for Strava Kudos-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
| Naam | |
| ID | cfmeifdjbilambnhoidkjfobhphhmhhl |
| Officiële URL | https://chromewebstore.google.com/detail/kudosible-%E2%80%93-hotkeys-for-s/cfmeifdjbilambnhoidkjfobhphhmhhl |
| Beschrijving | A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava. |
| Bestandsgrootte | 160 KB |
| Aantal Installaties | 237 |
| Huidige Versie | 0.61 |
| Laatst Bijgewerkt | 2019-01-08 |
| Publicatiedatum | 2019-01-08 |
| Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | Dave Hughes |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/dlh3/Kudosible |
| Ondersteunde Talen | 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"
]
}
]
} | |