Webplayer Hotkeys - Shortcuts for web players

Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.

什麼是Webplayer Hotkeys - Shortcuts for web players?

Webplayer Hotkeys - Shortcuts for web players是由Gabriel Duarte開發的Chrome擴展程式,該擴展的主要功能是“Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.”。

擴展截圖

screenshot
screenshot

下載Webplayer Hotkeys - Shortcuts for web players擴展crx文件

下載Webplayer Hotkeys - Shortcuts for web players擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A Chrome extension that assigns hotkeys and shortcuts to play/pause, and to switch music (next and previous). If no player is currently opened, it fires up Spotify.

If there is more player tabs than one, it follows this order of priority: Spotify > Deezer > SoundCloud > Youtube

Works with:

• Spotify
• Deezer
• SoundCloud
• Youtube                    

擴展基本資訊

名稱 Webplayer Hotkeys - Shortcuts for web players Webplayer Hotkeys - Shortcuts for web players
ID ikmkicnmahfdilneilgibeppbnolgkaf
官方網址 https://chromewebstore.google.com/detail/webplayer-hotkeys-shortcu/ikmkicnmahfdilneilgibeppbnolgkaf
簡介 Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.
檔案大小 52.04 KB
安裝次數 887
目前版本 1.3.2
更新時間 2020-01-02
上架時間 2020-01-02
評分 4.24/5 共 17 次評分
開發者 Gabriel Duarte
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/GabrielDuarteM/Webplayer-Hotkeys
說明頁面URL https://github.com/GabrielDuarteM/Webplayer-Hotkeys/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Webplayer Hotkeys - Shortcuts for web players",
    "version": "1.3.2",
    "description": "Assign hotkeys to play\/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.",
    "icons": {
        "128": "icon.png"
    },
    "author": "Gabriel Duarte",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "prev": {
            "description": "Previous music",
            "suggested_key": "Alt+Shift+Comma",
            "global": true
        },
        "play": {
            "description": "Play\/pause",
            "suggested_key": "Alt+Shift+P",
            "global": true
        },
        "next": {
            "description": "Next music",
            "suggested_key": "Alt+Shift+Period",
            "global": true
        }
    },
    "homepage_url": "https:\/\/github.com\/GabrielQDuarte\/Webplayer-Hotkeys\/tree\/master",
    "incognito": "split",
    "permissions": [
        "*:\/\/*.spotify.com\/*",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/soundcloud.com\/*",
        "*:\/\/*.deezer.com\/*",
        "tabs"
    ]
}