annotate dlsite-select-title.user.js @ 103:b2d0b37f945f
Update mandarake script
- update download url
- remove iife
- run at document start
- use observer
- remove search link fixer (seems to be fixed already)
author |
nanaya <me@nanaya.net> |
date |
Sat, 24 Dec 2022 22:10:30 +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 `)
|