Enable DLsite work name to be selected

Enable DLsite work name to be selected.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name                   Enable DLsite work name to be selected
// @name:zh-CN             可以选中 DLsite 作品名
// @namespace              http://tampermonkey.net/
// @version                0.3
// @description            Enable DLsite work name to be selected.
// @description:zh-cn      使 DLsite 作品名可以被选中。
// @author                 Retr#000
// @match                  https://www.dlsite.com/*
// @icon                   https://www.dlsite.com/images/web/common/favicon.ico
// @grant                  none
// @license                MIT
// ==/UserScript==

(function() {
    'use strict';

    var h = $('h1#work_name');
    $(h).attr({"id":"work_name","style":"color:#333;font-size:20px;background:none;user-select:auto"});

})();