91
|
1 // ==UserScript==
|
|
2 // @name dlsite select title
|
109
|
3 // @namespace https://nanaya.net
|
91
|
4 // @match https://www.dlsite.com/*
|
|
5 // @grant GM_addStyle
|
|
6 // @version 1.0.0
|
|
7 // @author nanaya
|
|
8 // @description Allow selecting work title
|
109
|
9 // @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/dlsite-select-title.user.js
|
91
|
10 // ==/UserScript==
|
|
11
|
109
|
12 'use strict';
|
|
13
|
91
|
14 /* global GM_addStyle */
|
|
15 GM_addStyle(`
|
|
16 .topicpath_item, #work_name {
|
|
17 user-select: auto !important;
|
|
18 }
|
108
|
19 `);
|