// ==UserScript== // @name Copy Lyrics from プチリリ, 歌詞タイム // @namespace https://greasyfork.org/users/179168 // @version 1.2.1 // @description Selectable lyrics and a button for copying all the lyrics // @author YellowPlus // @run-at document-start // @match *://petitlyrics.com/lyrics/* // @match *://www.kasi-time.com/* // @grant none // @require https://unpkg.com/ajax-hook/dist/ajaxhook.min.js // @require https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js // @downloadURL https://update.greasyfork.icu/scripts/40461/Copy%20Lyrics%20from%20%E3%83%97%E3%83%81%E3%83%AA%E3%83%AA%2C%20%E6%AD%8C%E8%A9%9E%E3%82%BF%E3%82%A4%E3%83%A0.user.js // @updateURL https://update.greasyfork.icu/scripts/40461/Copy%20Lyrics%20from%20%E3%83%97%E3%83%81%E3%83%AA%E3%83%AA%2C%20%E6%AD%8C%E8%A9%9E%E3%82%BF%E3%82%A4%E3%83%A0.meta.js // ==/UserScript== (function() { 'use strict'; if (document.location.href.match(/.*:\/\/petitlyrics.com\/lyrics\/.*/)) { var lyrics; $(document).ready(function(){ $("").click(()=>{ $("").insertAfter("#copy_button"); $("#temp_lyrics").select(); document.execCommand("Copy"); $("#temp_lyrics").remove(); }).insertBefore("#favorite-status"); $("
").insertBefore("#lyrics"); $("#lyrics").hide(); }); // Intercept the data of lyrics hookAjax({ onreadystatechange:function(xhr){ if (xhr.xhr.responseURL == "https://petitlyrics.com/com/get_lyrics.ajax" && xhr.xhr.responseText !== "") { var array = eval(xhr.xhr.responseText); lyrics = ""; array.forEach((data)=>{ lyrics += Base64.decode(data.lyrics); lyrics += "\n"; }); $("#lyrics2").html(lyrics.replace(new RegExp("\n", "g"), "