您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes the radio name Marquee
// ==UserScript== // @name Internet Roadtrip - Marquee Radio Name // @description Makes the radio name Marquee // @namespace Alib234.IRMRN // @version 1.0.1.2 // @author Alib234 // @license GPL3 // @match https://neal.fun/internet-roadtrip/* // ==/UserScript== (()=> { const s=document.createElement('style'); s.textContent=`.station-info[data-v-7771b499],.station-name[data-v-7771b499]{font-family:monospace;max-width:inherit;overflow:visible;text-overflow:visible;white-space:nowrap}`; document.head.appendChild(s); document.getElementsByClassName("station-name")[0].outerHTML='<marquee><div class="station-name"data-v-7771b499=""></div></marquee>'; })();