// ==UserScript== // @name 【伟哥自用】驾校一点通移除遮挡按钮 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://mnks.jxedt.com/ckm1/zjlx/* // @match https://mnks.jxedt.com/ckm1/zxlx/* // @match https://mnks.jxedt.com/ckm1/sxlx/ // @match https://mnks.jxedt.com/ckm1/wdct/ // @match https://mnks.jxedt.com/ckm1/zyt/ // @match https://mnks.jxedt.com/ckm1/yct/ // @match https://mnks.jxedt.com/ckm4/zjlx/* // @match https://mnks.jxedt.com/ckm4/zxlx/* // @match https://mnks.jxedt.com/ckm4/sxlx/ // @match https://mnks.jxedt.com/ckm4/wdct/ // @match https://mnks.jxedt.com/ckm4/zyt/ // @match https://mnks.jxedt.com/ckm4/yct/ // @icon https://www.google.com/s2/favicons?sz=64&domain=jxedt.com // ==/UserScript== (function() { 'use strict'; document.onmousedown = ()=>{ // 移除'查看完整技巧'按钮 document.querySelector(".cont>button")?.remove() document.querySelector(".cont>.bg")?.remove() } // Your code here... })();