🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Greasy Fork is available in English.

📂 缓存分发状态(共享加速已生效)
🕒 页面同步时间:2026/01/01 21:02:43
🔄 下次更新时间:2026/01/01 22:02:43
手动刷新缓存

allow_select

選択を許可する.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name        allow_select
// @namespace   http://catherine.v0cyc1pp.com/allow_select.user.js
// @include     http://www.tbc-sendai.co.jp/*
// @include     http://konbinipan.com/*
// @author      greg10
// @license     GPL 3.0
// @run-at      document-end
// @version     1.4
// @require     http://code.jquery.com/jquery-3.1.1.min.js
// @grant       none
// @description 選択を許可する.
// ==/UserScript==


$('*').css('-webkit-user-select', 'text');
$('*').css('-webkit-touch-callout', 'default');

function handler(e){
	e.stopPropagation();
}

addEventListener('onreadystatechange', handler, true);
addEventListener('select', handler, true);
addEventListener('selectstart', handler, true);
addEventListener('selectionchange', handler, true);
addEventListener('copy', handler, true);
addEventListener('cut', handler, true);
addEventListener('contextmenu', handler, true);
addEventListener('message', handler, true);
addEventListener('mousedown', handler, true);
addEventListener('mouseup', handler, true);
addEventListener('keydown', handler, true);
addEventListener('keyup', handler, true);
addEventListener('dragstart', handler, true);