web-dev-qa-db-ja.com

Spotify Webプレーヤー-前と次のショートカット

私はすべてのメディアプレーヤーにキーボードショートカットを使用していますが、SpotifyのWebプレーヤー(open.spotify.com)は、提供するキーボードショートカットがかなり制限されているようです。

そんなこと知ってる - Ctrl + left/right arrow Spotifyのアプリで動作します 次または前のトラックにスキップしますが、Webプレーヤーに相当するものはありますか?

2
Zach Saucier

SpotifyのWebプレーヤーでネイティブにこれを行う方法はわかりませんが、左と右のキーがそれぞれ前のトラックと次のトラックに移動できるようにするためのユーザースクリプトを作成しました(いいえ Ctrl または必要なもの)。

GreasyFork でインストールするか、以下にコピーして貼り付けます:

// ==UserScript==
// @name         Next and Previous key shortcuts for Spotify
// @description  Allows the left and right keyboard arrows to be used to go to the previous and next songs on Spotify.
// @author       Zach Saucier
// @namespace    https://zachsaucier.com/
// @version      1.1
// @match        https://open.spotify.com/*
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener('keydown', (event) => {
        switch(event.code) {
            case 'ArrowLeft':
                document.querySelector('.spoticon-skip-back-16').click();
                break;
            case 'ArrowRight':
                document.querySelector('.spoticon-skip-forward-16').click();
                break;
        }
    }, false);
})();
3
Zach Saucier