您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name zggg // @namespace http://tampermonkey.net/ // @version 0.71 // @description try to take over the world! // @author You // @match https://www.zbg.com/trade/* // @grant none // ==/UserScript== (function() { 'use strict'; console.log('脚本'); $('.fill-area').css('position', 'fixed').css('left', 0).css('z-index', 9999999).css('width', '800px'); $('#marketFrame').remove(); $('.plate-area').remove(); $('.trade-navbar').remove(); $('.time').remove(); $('.entrust-area').remove(); setTimeout(function() { if($('.swal-modal .swal-text').text() == '未到开盘时间') { $(window).on('beforeunload', function(){ return "Good bye"; }); } }, 2000) })();