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