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 là gì?

Kudosible – Hotkeys for Strava Kudos là một tiện ích mở rộng Chrome được phát triển bởi Dave Hughes, và tính năng chính của nó là "A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Kudosible – Hotkeys for Strava Kudos

Tải xuống các tệp mở rộng Kudosible – Hotkeys for Strava Kudos dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                                            

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Kudosible – Hotkeys for Strava Kudos Kudosible – Hotkeys for Strava Kudos
ID cfmeifdjbilambnhoidkjfobhphhmhhl
URL Chính Thức https://chromewebstore.google.com/detail/kudosible-%E2%80%93-hotkeys-for-s/cfmeifdjbilambnhoidkjfobhphhmhhl
Mô tả A chrome extension which adds hotkey support for navigating activities and giving kudos on Strava.
Kích Thước Tệp 160 KB
Số Lần Cài Đặt 237
Phiên Bản Hiện Tại 0.61
Cập Nhật Lần Cuối 2019-01-08
Ngày Phát Hành 2019-01-08
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Dave Hughes
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dlh3/Kudosible
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}