// ==UserScript== // @name Mirabilia // @namespace Violentmonkey Scripts // @match http://sip.mirabileweb.it/* // @grant none // @version 1.0 // @author - // @description 21/2/2023, 23:36:39 // @grant GM_setClipboard // ==/UserScript== (function() { var pdfId = ""; var pageHtml = document.documentElement.innerHTML; var pdfIdStartIndex = pageHtml.indexOf("DownloadPdf.aspx?id=") + "DownloadPdf.aspx?id=".length; var pdfIdEndIndex = pageHtml.indexOf("&", pdfIdStartIndex); if (pdfIdStartIndex != -1 && pdfIdEndIndex != -1) { pdfId = pageHtml.substring(pdfIdStartIndex, pdfIdEndIndex); } if (pdfId != "") { var textDiv = document.createElement("div"); textDiv.innerHTML = "PDF ID: " + pdfId; textDiv.style.position = "fixed"; textDiv.style.top = "10px"; textDiv.style.left = "10px"; textDiv.style.backgroundColor = "white"; textDiv.style.border = "1px solid black"; textDiv.style.padding = "5px"; textDiv.style.cursor = "pointer"; textDiv.addEventListener("click", function() { GM_setClipboard(pdfId); alert("PDF ID copied to clipboard!"); }); document.body.appendChild(textDiv); } })();