Greasy Fork is available in English.

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

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

  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");