Mercurial > ec-userscripts
view dlsite-select-title.user.js @ 144:bfd72865c243
Uh, kebab case filename?
author | nanaya <me@nanaya.net> |
---|---|
date | Sat, 27 Sep 2025 14:52:48 +0900 |
parents | ef21ef445fc6 |
children | 15ec4ec958d7 |
line wrap: on
line source
// ==UserScript== // @name dlsite select title // @namespace https://nanaya.net // @match https://www.dlsite.com/* // @grant GM_addStyle // @version 1.0.0 // @author nanaya // @description Allow selecting work title // @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/dlsite-select-title.user.js // ==/UserScript== 'use strict'; /* global GM_addStyle */ GM_addStyle(` .topicpath_item, #work_name { user-select: auto !important; } `);