Mercurial > ec-userscripts
annotate dlsite-select-title.user.js @ 149:f4d054e191ed default tip
Reduce FOUC
| author | nanaya <me@nanaya.net> |
|---|---|
| date | Wed, 01 Oct 2025 20:26:16 +0900 |
| parents | 15ec4ec958d7 |
| children |
| rev | line source |
|---|---|
| 91 | 1 // ==UserScript== |
|
147
15ec4ec958d7
Sentence case name and match filename (sort of)
nanaya <me@nanaya.net>
parents:
109
diff
changeset
|
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 `); |
