YouTube Music Hotkeys

Use keyboard shortcuts to control YouTube Music

YouTube Music Hotkeysคืออะไร?

YouTube Music Hotkeys เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lidel และคุณลักษณะหลักของมันคือ "Use keyboard shortcuts to control YouTube Music"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Music Hotkeys

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Music Hotkeys ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}