您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Increase the size of lyrics on YouTube Music!
// ==UserScript== // @name Make YouTube Music Lyrics Bigger! // @namespace https://gist.github.com/nakanakaii/18963577649449e20c65f373496b8006 // @version 2025-03-31 // @description Increase the size of lyrics on YouTube Music! // @author https://github.com/nakanakii // @match https://music.youtube.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=music.youtube.com // @grant none // @license GNU // ==/UserScript== (function () { 'use strict'; console.log('make Youtube Music lyrics bigger!'); // Check if the website is not music.youtube.com and cancel the function if (document.location.host !== 'music.youtube.com') { console.log('site is not music.youtube.com'); return; } // Create a new <style> element var style = document.createElement('style'); style.type = 'text/css'; style.textContent = ` yt-formatted-string.description { font-size: 2.5em !important; text-align: center !important; padding: 0 12px !important; } `; // Append the <style> element to the <head> section document.head.appendChild(style); console.log('style object injected successfully') })();