您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
The userscript helps you to bypass the copy paste block until you solve the quiz.
当前为
// ==UserScript== // @name Copy Paste Bypasser // @namespace Copy Paste Bypasser // @version 1.0.2 // @copyright 2017+, Pakdefndr // @description The userscript helps you to bypass the copy paste block until you solve the quiz. // @author Pak Defndr // @include http://localhost/Quiz/* // @grant none // ==/UserScript== (function() { document.getElementsByTagName("body")[0].setAttribute("oncopy", "return true"); document.getElementsByTagName("body")[0].setAttribute("oncut", "return true"); document.getElementsByTagName("body")[0].setAttribute("onpaste", "return true"); document.getElementsByTagName("body")[0].setAttribute("onkeypress", ""); document.getElementsByTagName("body")[0].setAttribute("onkeydown", ""); var elmLink = document.getElementById('txtQuestion'); elmLink.removeAttribute('readonly'); elmLink.removeAttribute('disabled'); var elmLink1 = document.getElementById('lblAnswer0'); elmLink1.removeAttribute('readonly'); elmLink1.removeAttribute('disabled'); var elmLink2 = document.getElementById('lblAnswer1'); elmLink2.removeAttribute('readonly'); elmLink2.removeAttribute('disabled'); var elmLink3 = document.getElementById('lblAnswer2'); elmLink3.removeAttribute('readonly'); elmLink3.removeAttribute('disabled'); var elmLink4 = document.getElementById('lblAnswer3'); elmLink4.removeAttribute('readonly'); elmLink4.removeAttribute('disabled'); var elmLink5 = document.getElementById('lblAnswer4'); elmLink5.removeAttribute('readonly'); elmLink5.removeAttribute('disabled'); document.onkeydown = null; })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址