// ==UserScript== // @name DLSite GAME TIELE Copy // @namespace https://twitter.com/Tescostum/ // @version 0.1 // @description Copy game title // @author KBT // @match https://www.dlsite.com/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { console.info("DLSite Copy game title"); var listItem = document.querySelector(".topicpath > .topicpath_item:last-child"); if(listItem) { console.info(listItem); listItem.style.userSelect = "text"; } var titleItem = document.querySelector("#work_name"); titleItem.style.userSelect = "text"; })();