bloxd.io no hit cool down + instant break + hide gui

this is a fun experince for people no copying it

当前为 2023-11-01 提交的版本,查看 最新版本

// ==UserScript==
// @name         bloxd.io no hit cool down + instant break + hide gui
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description   this is a fun experince for people no copying it
// @author       airtrash
// @match        https://bloxd.io/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bloxd.io
// @grant        none
// @license      MIT
// ==/UserScript==


;(original => (Date.now = () => original() * 2).toString = () => "function now() {\n    [native code]\n}")(Date.now);
(function() {
    'use strict';

    var wholeAppWrapper = document.querySelector(".WholeAppWrapper");
    document.addEventListener('keydown', function(event) {
        if (event.key === 'U') {
            if (wholeAppWrapper.style.visibility === 'hidden') {
                wholeAppWrapper.style.visibility = 'visible';
            } else {
                wholeAppWrapper.style.visibility = 'hidden';
            }
        }
    });

    document.addEventListener('keydown', function(event) {
        if (event.key === 'u') {
            if (wholeAppWrapper.style.visibility === 'hidden') {
                wholeAppWrapper.style.visibility = 'visible';
            } else {
                wholeAppWrapper.style.visibility = 'hidden';
            }
        }
    });

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址