Streamkeys

Global hotkeys for online music players including support for media keys.

Streamkeys là gì?

Streamkeys là một tiện ích mở rộng Chrome được phát triển bởi kara-benn, và tính năng chính của nó là "Global hotkeys for online music players including support for media keys.".

Ả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 Streamkeys

Tải xuống các tệp mở rộng Streamkeys 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

                        If the hotkeys are not working for you verify that they are set in the extension tab. To do that, click on the chrome menu (3 horizontal stripes on top right) and go to tools -> extensions. Scroll to the bottom of the page and click on "Keyboard shortcuts". From that popup you can change the keys to those of your choosing.

This extension enables you to control the basic features of online media player hotkeys via global hotkeys. Pressing a hotkey will trigger an action in the media player's tab. There are 4 actions bound to the following default hotkeys:

Play/Pause: Media key play/pause
Play Next: Media key next
Play Previous: Media key previous
Mute: Ctrl + Shift + 2

Support for the following features can also be bound to hotkeys by the user (or controlled though the popup):

Like
Dislike
Stop

You can change the hotkeys from the Chrome extension tab. To get there click on : Settings icon (three horizontal lines on top right of browser) => Tools => Extensions => Keyboard shortcuts (link at bottom of page) 

If you have any suggestions for more media players to add for the next release let me know! [email protected].                    

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

Tên Streamkeys Streamkeys
ID ekpipjofdicppbepocohdlgenahaneen
URL Chính Thức https://chromewebstore.google.com/detail/streamkeys/ekpipjofdicppbepocohdlgenahaneen
Mô tả Global hotkeys for online music players including support for media keys.
Kích Thước Tệp 1.04 MB
Số Lần Cài Đặt 27,266
Phiên Bản Hiện Tại 1.8.5
Cập Nhật Lần Cuối 2023-11-21
Ngày Phát Hành 2020-05-23
Đánh Giá 4.47/5 Tổng số 946 Đánh Giá
Nhà Phát Triển kara-benn
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://sites.google.com/view/termskbenn101/home
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Streamkeys",
    "version": "1.8.5",
    "description": "Global hotkeys for online music players including support for media keys.",
    "background": {
        "service_worker": "js\/background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentscript.js",
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "128": "assets\/icons\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/inject\/hoopla_inject.js",
                "js\/inject\/musickit_inject.js",
                "js\/inject\/palcomp3_inject.js",
                "js\/inject\/seesu_inject.js",
                "js\/controllers\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Streamkeys",
        "default_popup": "popup.html",
        "default_icon": "assets\/icons\/icon38.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "tabs",
        "storage",
        "declarativeNetRequest",
        "scripting",
        "notifications"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "commands": {
        "playPause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "global": true,
            "description": "Toggle play\/pause"
        },
        "playNext": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "global": true,
            "description": "Play next track"
        },
        "playPrev": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "global": true,
            "description": "Play previous track"
        },
        "mute": {
            "suggested_key": {
                "default": "Ctrl+Shift+2",
                "mac": "MacCtrl+Shift+2"
            },
            "global": true,
            "description": "Toggle mute"
        },
        "stop": {
            "suggested_key": {
                "default": "MediaStop"
            },
            "global": true,
            "description": "Stop all players"
        },
        "like": {
            "global": true,
            "description": "Toggle like"
        },
        "dislike": {
            "global": true,
            "description": "Toggle dislike"
        },
        "playerStateNotify": {
            "global": true,
            "description": "Send notification of player(s) state"
        }
    }
}