Spotify Lyrics Extractor

获取并复制 Spotify Web 歌词

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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);
})();