Kudosible – Hotkeys for Strava Kudos
A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.
Cos'è Kudosible – Hotkeys for Strava Kudos?
Kudosible – Hotkeys for Strava Kudos è un'estensione di Chrome sviluppata da Dave Hughes, e la sua funzione principale è "A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Kudosible – Hotkeys for Strava Kudos
Scarica i file di estensione Kudosible – Hotkeys for Strava Kudos in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
Nome | Kudosible – Hotkeys for Strava Kudos |
ID | cfmeifdjbilambnhoidkjfobhphhmhhl |
URL Ufficiale | https://chromewebstore.google.com/detail/kudosible-%E2%80%93-hotkeys-for-s/cfmeifdjbilambnhoidkjfobhphhmhhl |
Descrizione | A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava. |
Dimensione del File | 160 KB |
Conteggio Installazioni | 237 |
Versione Corrente | 0.61 |
Ultimo Aggiornamento | 2019-01-08 |
Data di Pubblicazione | 2019-01-08 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | Dave Hughes |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/dlh3/Kudosible |
Lingue Supportate | 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" ] } ] } |