Bloxd Fullscreen Bypass

Lets you play bloxd.io without having to enter fullscreen

  1. // ==UserScript==
  2. // @name Bloxd Fullscreen Bypass
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Lets you play bloxd.io without having to enter fullscreen
  6. // @author CyphrNX
  7. // @match https://bloxd.io/
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. setInterval(function() {
  16. var elementToDelete = document.querySelector('.ForceRotateBackground.FullyFancyText');
  17. if (elementToDelete) {
  18. elementToDelete.remove();
  19. }
  20. }, 100);
  21. })();

QingJ © 2025

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