# HG changeset patch # User nanaya # Date 1645180760 -32400 # Node ID f1677d285bee772e02b31e88cb6c3b2fac8236b3 # Parent 987cafd4945f83cf95ebb21f9eb4fcc1e2fdab86 Add dlsite select title diff -r 987cafd4945f -r f1677d285bee dlsite-select-title.user.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dlsite-select-title.user.js Fri Feb 18 19:39:20 2022 +0900 @@ -0,0 +1,17 @@ +// ==UserScript== +// @name dlsite select title +// @namespace https://myconan.net +// @match https://www.dlsite.com/* +// @grant GM_addStyle +// @version 1.0.0 +// @author nanaya +// @description Allow selecting work title +// @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/dlsite-select-title.user.js +// ==/UserScript== + +/* global GM_addStyle */ +GM_addStyle(` + .topicpath_item, #work_name { + user-select: auto !important; + } +`)