Greasy Fork

Greasy Fork is available in English.

DLSite GAME TIELE Copy

Copy game title

当前为 2022-04-01 提交的版本,查看 最新版本

// ==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
// ==/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";
})();