Mercurial > ec-userscripts
annotate dlsite-select-title.user.js @ 94:a35ddabefd9d
Update linter
author | nanaya <me@nanaya.net> |
---|---|
date | Fri, 23 Dec 2022 19:10:25 +0900 |
parents | f1677d285bee |
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 `) |