Spotify Lyrics Extractor

获取并复制 Spotify Web 歌词

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Spotify Lyrics Extractor
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description 获取并复制 Spotify Web 歌词
// @author       You
// @match        https://open.spotify.com/track/*
// @grant        GM_registerMenuCommand
// @grant        GM_setClipboard
// @license GPLv3
// ==/UserScript==

(function() {
    'use strict';

    function extractLyrics() {
        let lyricsElements = document.querySelectorAll('[data-testid="lyrics-line-always-visible"], [data-testid="lyrics-container"] p');
        let lyrics = Array.from(lyricsElements).map(el => el.textContent.trim()).join('\n');
        if (lyrics) {
            console.log("Spotify Lyrics:\n" + lyrics);
            GM_setClipboard(lyrics);
            alert("歌词已复制到剪贴板!");
        } else {
            alert("未找到歌词,请确保歌词已加载。");
        }
    }

    GM_registerMenuCommand("复制 Spotify 歌词", extractLyrics);
})();