changeset 91:f1677d285bee

Add dlsite select title
author nanaya <me@nanaya.pro>
date Fri, 18 Feb 2022 19:39:20 +0900
parents 987cafd4945f
children ebca2e6df3cc
files dlsite-select-title.user.js
diffstat 1 files changed, 17 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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;
+  }
+`)