您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
歌詞タイムでテキストを選択可能にします
// ==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'; })();