YouTube Music Hotkeys

Use keyboard shortcuts to control YouTube Music

YouTube Music Hotkeys란 무엇입니까?

YouTube Music Hotkeys은(는) lidel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use keyboard shortcuts to control YouTube Music"입니다.

확장 프로그램 스크린샷

screenshot

YouTube Music Hotkeys 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 YouTube Music Hotkeys YouTube Music Hotkeys
ID fgjkdpncbpnlhbdbmelbhmapblgaamkl
공식 URL https://chromewebstore.google.com/detail/youtube-music-hotkeys/fgjkdpncbpnlhbdbmelbhmapblgaamkl
설명 Use keyboard shortcuts to control YouTube Music
파일 크기 40.74 KB
설치 횟수 857
현재 버전 1.9.0
최근 업데이트 2021-05-04
출시 날짜 2019-10-13
평점 5.00/5 총 11 개의 평점
개발자 lidel
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lidel/google-music-hotkeys
도움말 페이지 URL https://github.com/lidel/google-music-hotkeys/issues
지원되는 언어 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"
        }
    ]
}