view 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
line wrap: on
line source

// ==UserScript==
// @name        dlsite select title
// @namespace   https://myconan.net
// @match       https://www.dlsite.com/*
// @grant       GM_addStyle
// @version     1.0.0
// @author      nanaya
// @description Allow selecting work title
// @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/dlsite-select-title.user.js
// ==/UserScript==

/* global GM_addStyle */
GM_addStyle(`
  .topicpath_item, #work_name {
    user-select: auto !important;
  }
`)