您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
解除法宣在线考试的复制拖放限制
// ==UserScript== // @name 法宣考试解除限制 // @namespace http://www.faxuanyun.com/ // @version 0.1 // @description 解除法宣在线考试的复制拖放限制 // @author You // @match http://*.faxuanyun.com/* // @grant none // @license xianzhi0520 // ==/UserScript== (function() { 'use strict'; document.onselectstart = document.onbeforecopy = document.oncontextmenu = document.onmousedown = document.onkeydown = function(){return true;};void(document.body.onmouseup=''); void(document.body.onselectstart=''); void(document.body.onmouseup=''); void(document.body.oncopy=''); console.log('解除限制 start') // Your code here... })();