您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
解決無法複製歌詞的困擾
// ==UserScript== // @name Uta-Net 恢復複製操作 // @namespace https://home.gamer.com.tw/homeindex.php?owner=xu3u04u48 // @version 2025-05-25 // @description 解決無法複製歌詞的困擾 // @author xu3u04u48 // @match https://www.uta-net.com/song/* // @icon https://www.google.com/s2/favicons?sz=64&domain=uta-net.com // @grant none // ==/UserScript== (function() { 'use strict'; document.body.oncopy = null; document.body.oncut = null; document.body.oncontextmenu = null; document.body.onselectstart = null; document.body.onmousedown = null; document.body.onmouseup = null; document.body.onkeydown = null; document.body.onkeypress = null; document.body.onkeyup = null; var elem = document.querySelector('.moviesong'); if (elem) { elem.style.userSelect = 'text'; elem.style.webkitUserSelect = 'text'; elem.style.msUserSelect = 'text'; elem.style.pointerEvents = 'auto'; elem.replaceWith(elem.cloneNode(true)); } // 移除所有帶 user-select: none 的元素限制 Array.from(document.querySelectorAll('*')).forEach(e=>{ e.style.userSelect='text'; e.style.webkitUserSelect='text'; e.style.msUserSelect='text'; }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址