Allows lyrics selection and copy on music.oricon.co.jp
当前为
// ==UserScript==
// @name Select and copy lyrics from music.oricon.co.jp
// @namespace StephenP
// @description Allows lyrics selection and copy on music.oricon.co.jp
// @version 1
// @grant none
// @author StephenP
// @match https://music.oricon.co.jp/php/lyrics/LyricsDisp.php?*
// ==/UserScript==
var overlay=document.getElementsByClassName("lyric-contents")[0].children[0];
overlay.parentNode.removeChild(overlay);
var lyric=document.getElementsByClassName("lyric")[0];
lyric.removeAttribute("onmousemove");
lyric.removeAttribute("onmousedown");
lyric.removeAttribute("oncopy");
lyric.removeAttribute("oncontextmenu");
lyric.removeAttribute("onselectstart");
lyric.removeAttribute("style");