YouTube Music Hotkeys

Use keyboard shortcuts to control YouTube Music

YouTube Music Hotkeys là gì?

YouTube Music Hotkeys là một tiện ích mở rộng Chrome được phát triển bởi lidel, và tính năng chính của nó là "Use keyboard shortcuts to control YouTube Music".

Ả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 YouTube Music Hotkeys

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

                        This browser extension lets you control background playback of YouTube Music (previously known as Google Music)  without switching tabs. That is all.

Features:

    browser action button 
    left click toggles playback, context click displays more options
    open and pin YouTube Music if it is not open yet
    toggle playback: Ctrl+Shift+8
    previous song: Ctrl+Shift+9
    next song: Ctrl+Shift+0
    autoplay when &autoplay=true is found in URL

One can customize default shortcuts via chrome://extensions/configure                    

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

Tên YouTube Music Hotkeys YouTube Music Hotkeys
ID fgjkdpncbpnlhbdbmelbhmapblgaamkl
URL Chính Thức https://chromewebstore.google.com/detail/youtube-music-hotkeys/fgjkdpncbpnlhbdbmelbhmapblgaamkl
Mô tả Use keyboard shortcuts to control YouTube Music
Kích Thước Tệp 40.74 KB
Số Lần Cài Đặt 857
Phiên Bản Hiện Tại 1.9.0
Cập Nhật Lần Cuối 2021-05-04
Ngày Phát Hành 2019-10-13
Đánh Giá 5.00/5 Tổng số 11 Đánh Giá
Nhà Phát Triển lidel
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lidel/google-music-hotkeys
URL Trang Trợ Giúp https://github.com/lidel/google-music-hotkeys/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Music Hotkeys",
    "version": "1.9.0",
    "description": "Use keyboard shortcuts to control YouTube Music",
    "homepage_url": "https:\/\/github.com\/lidel\/google-music-hotkeys",
    "author": "Marcin Rataj",
    "icons": {
        "128": "Play_music_triangle.png"
    },
    "permissions": [
        "https:\/\/play.google.com\/music\/listen*",
        "https:\/\/podcasts.google.com\/*",
        "https:\/\/music.youtube.com\/*",
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "128": "Play_music_triangle.png"
        }
    },
    "commands": {
        "toggle-playback": {
            "suggested_key": {
                "default": "Ctrl+Shift+8",
                "windows": "Alt+Shift+8"
            },
            "description": "Toggle Playback"
        },
        "previous-song": {
            "suggested_key": {
                "default": "Ctrl+Shift+9",
                "windows": "Alt+Shift+9"
            },
            "description": "Previous Song"
        },
        "next-song": {
            "suggested_key": {
                "default": "Ctrl+Shift+0",
                "windows": "Alt+Shift+0"
            },
            "description": "Next Song"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/music\/listen*",
                "https:\/\/podcasts.google.com\/*",
                "https:\/\/music.youtube.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "autoplay.js"
            ],
            "all_frames": false,
            "run_at": "document_idle"
        }
    ]
}