Kasi-time Selectable

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

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

// ==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';

})();