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.

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

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

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