Select and copy lyrics from music.oricon.co.jp

Allows lyrics selection and copy on music.oricon.co.jp

目前為 2020-05-19 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Select and copy lyrics from music.oricon.co.jp
  3. // @namespace StephenP
  4. // @description Allows lyrics selection and copy on music.oricon.co.jp
  5. // @version 1
  6. // @grant none
  7. // @author StephenP
  8. // @match https://music.oricon.co.jp/php/lyrics/LyricsDisp.php?*
  9. // ==/UserScript==
  10. var overlay=document.getElementsByClassName("lyric-contents")[0].children[0];
  11. overlay.parentNode.removeChild(overlay);
  12. var lyric=document.getElementsByClassName("lyric")[0];
  13. lyric.removeAttribute("onmousemove");
  14. lyric.removeAttribute("onmousedown");
  15. lyric.removeAttribute("oncopy");
  16. lyric.removeAttribute("oncontextmenu");
  17. lyric.removeAttribute("onselectstart");
  18. lyric.removeAttribute("style");

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址