Kudosible – Hotkeys for Strava Kudos

A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.

What is Kudosible – Hotkeys for Strava Kudos?

Kudosible – Hotkeys for Strava Kudos is a Chrome extension developed by Dave Hughes, and its main feature is "A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.".

Extension Screenshots

screenshot

Download Kudosible – Hotkeys for Strava Kudos Extension CRX File

Download Kudosible – Hotkeys for Strava Kudos extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Kudosible – Hotkeys for Strava Kudos Kudosible – Hotkeys for Strava Kudos
ID cfmeifdjbilambnhoidkjfobhphhmhhl
Official URL https://chromewebstore.google.com/detail/kudosible-%E2%80%93-hotkeys-for-s/cfmeifdjbilambnhoidkjfobhphhmhhl
Description A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.
File Size 160 KB
Installation Count 237
Current Version 0.61
Last Updated 2019-01-08
Publish Date 2019-01-08
Rating 3.00/5 Total 2 Ratings
Developer Dave Hughes
Email [email protected]
Payment Type free
Extension Website https://github.com/dlh3/Kudosible
Supported Languages 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"
            ]
        }
    ]
}