Mercurial > ec-userscripts
annotate dlsite-select-title.user.js @ 147:15ec4ec958d7 default tip
Sentence case name and match filename (sort of)
author | nanaya <me@nanaya.net> |
---|---|
date | Sat, 27 Sep 2025 15:06:06 +0900 |
parents | ef21ef445fc6 |
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 `); |