Mercurial > ec-userscripts
annotate dlsite-select-title.user.js @ 91:f1677d285bee
Add dlsite select title
author | nanaya <me@nanaya.pro> |
---|---|
date | Fri, 18 Feb 2022 19:39:20 +0900 |
parents | |
children | 2c4470b73ad9 |
rev | line source |
---|---|
91 | 1 // ==UserScript== |
2 // @name dlsite select title | |
3 // @namespace https://myconan.net | |
4 // @match https://www.dlsite.com/* | |
5 // @grant GM_addStyle | |
6 // @version 1.0.0 | |
7 // @author nanaya | |
8 // @description Allow selecting work title | |
9 // @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/dlsite-select-title.user.js | |
10 // ==/UserScript== | |
11 | |
12 /* global GM_addStyle */ | |
13 GM_addStyle(` | |
14 .topicpath_item, #work_name { | |
15 user-select: auto !important; | |
16 } | |
17 `) |