Kasi-time Selectable

歌詞タイムでテキストを選択可能にします

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

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

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           Kasi-time Selectable
// @description    歌詞タイムでテキストを選択可能にします
// @homepageURL    https://greasyfork.org/ja/users/10548-foomin10
// @namespace      https://twitter.com/MizuiroFolder
// @version        2.1
// @date           2015-04-17
// @match          http://www.kasi-time.com/item-*.html
// @run-at         document-start
// @icon           http://www.kasi-time.com/favicon.ico
// @license        CC BY 4.0 http://creativecommons.org/licenses/by/4.0/
// ==/UserScript==

(function(){
'use strict';

var body = document.body;

body.oncontextmenu = 'null';
body.onselectstart = 'null';
body.oncopy = 'null';

body.style.MozUserSelect = 'text';

})();