Bloxd Fullscreen Bypass

Lets you play bloxd.io without having to enter fullscreen

目前為 2024-02-05 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Bloxd Fullscreen Bypass
// @namespace    http://tampermonkey.net/
// @version      1
// @description  Lets you play bloxd.io without having to enter fullscreen
// @author       Devappl
// @match        https://bloxd.io/
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function() {
        var elementToDelete = document.querySelector('.ForceRotateBackground.FullyFancyText');
        if (elementToDelete) {
            elementToDelete.remove();
        }
    }, 100);
})();

QingJ © 2025

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