DEEP SPACE Client for bloxd.io

this is cool

当前为 2024-03-30 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name DEEP SPACE Client for bloxd.io
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description this is cool
  6. // @author GEORGECR
  7. // @match https://bloxd.io/
  8. // @icon https://i.postimg.cc/NMG91FWH/space-BG-loco.jpg
  9. // @license MIT
  10. // @supportURL https://github.com/damirarh/GreasyForkScripts
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. setInterval(function() {
  15. 'use strict';
  16. document.title = "DEEP SPACE";
  17. const maintext = document.querySelector('.Title.FullyFancyText');
  18. maintext.style.fontFamily = {
  19. "name": "Montserrat",
  20. "weight": "400",
  21. "style": "normal",
  22. "source": "Fonts/Montserrat/Montserrat-Regular.ttf"
  23. };
  24. maintext.style.textShadow = " 10px 5px 5px #000000";
  25. maintext.style.webkitTextStroke = "none";
  26.  
  27.  
  28.  
  29. document.querySelector('.Title.FullyFancyText').textContent = "DEEP SPACE";
  30. let background = document.getElementsByClassName("Background");
  31. background[0].src = "https://i.postimg.cc/0yTx0G0L/client-BG.jpg";
  32. let names = document.getElementsByClassName("AvailableGameText");
  33. let imgs = document.getElementsByClassName("AvailableGameImg")
  34. let imgedits = document.getElementsByClassName("AvailableGame");
  35.  
  36.  
  37. setInterval(function() {
  38. const crosshair = document.querySelector(".CrossHair");
  39. if (crosshair) {
  40. crosshair.textContent = "";
  41. crosshair.style.backgroundImage = "url(https://piskel-imgstore-b.appspot.com/img/68888566-cce3-11ee-a3cd-35b2269c1bce.gif)";
  42. crosshair.style.backgroundRepeat = "no-repeat";
  43. crosshair.style.backgroundSize = "contain";
  44. crosshair.style.width = "25px";
  45. crosshair.style.height = "25px";
  46. }
  47. }, 1000);
  48.  
  49.  
  50.  
  51. // Hotbar
  52. (function() {
  53. 'use strict';
  54.  
  55. setInterval(function() {
  56. const hotbarslots = document.querySelectorAll(".item");
  57. const selectedslot = document.querySelectorAll(".SelectedItem");
  58. if (hotbarslots) {
  59. hotbarslots.forEach(function(hotbar) {
  60. hotbar.style.borderRadius = "8px";
  61. hotbar.style.borderColor = "#000000";
  62. hotbar.style.backgroundColor = "transparent";
  63. hotbar.style.boxShadow = "none"
  64. hotbar.style.outline = "transparent"
  65. });
  66. }
  67. if (selectedslot) {
  68. selectedslot.forEach(function(slot) {
  69. slot.style.backgroundColor = "transparent";
  70. slot.style.boxShadow = "none";
  71. slot.style.borderRadius = "15px";
  72. slot.style.borderColor = "#FFFFFF";
  73. slot.style.outline = "transparent";
  74. });
  75. }
  76. }, 1);
  77. })();
  78. (function() {
  79. 'use strict'
  80. const text = document.createElement('div');
  81. text.style.position = "fixed";
  82. text.textContent = "DEEPSPACE"
  83. text.style.color = "#ADFF2F";
  84. text.style.fontSize ="15px"
  85. text.style.fontWeight = "bold";
  86. text.style.zIndex ="10000";
  87. text.style.borderRadius ="25px";
  88. text.style.bottom = "1%";
  89. text.style.left = "95%";
  90. text.style.letterSpacing = "2px";
  91. text.style.textAlign = "center";
  92. text.style.justifyContent = "center";
  93. text.style.transform = "translateX(-50%)";
  94. text.style.display = "flex";
  95. text.style.width = "105px";
  96. text.style.height = "36.5px";
  97.  
  98. document.body.appendChild(text);
  99. })();
  100. document.querySelectorAll('.AvailableGame').forEach(item => {
  101. item.style.border = "none";
  102. })
  103.  
  104. names[0].style.textShadow = "none";
  105. imgedits[0].style.border = "none";
  106. imgedits[0].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  107. names[1].style.textShadow = "none";
  108. imgedits[1].style.border = "none";
  109. imgedits[1].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  110. names[2].style.textShadow = "none";
  111. imgedits[2].style.border = "none";
  112. imgedits[2].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  113. names[3].style.textShadow = "none";
  114. imgedits[3].style.border = "none";
  115. imgedits[3].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  116. names[4].style.textShadow = "none";
  117. imgedits[4].style.border = "none";
  118. imgedits[4].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  119. names[5].style.textShadow = "none";
  120. imgedits[5].style.border = "none";
  121. imgedits[5].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  122. names[6].style.textShadow = "none";
  123. imgedits[6].style.border = "none";
  124. imgedits[6].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  125. names[7].style.textShadow = "none";
  126. imgedits[7].style.border = "none";
  127. imgedits[7].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  128. names[8].style.textShadow = "none";
  129. imgedits[8].style.border = "none";
  130. imgedits[8].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  131. names[9].style.textShadow = "none";
  132. imgedits[9].style.border = "none";
  133. imgedits[9].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  134. names[10].style.textShadow = "none";
  135. imgedits[10].style.border = "none";
  136. imgedits[10].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  137. names[11].style.textShadow = "none";
  138. imgedits[11].style.border = "none";
  139. imgedits[11].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  140. names[12].style.textShadow = "none";
  141. imgedits[12].style.border = "none";
  142. imgedits[12].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  143. names[13].style.textShadow = "none";
  144. imgedits[13].style.border = "none";
  145. imgedits[13].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  146. names[14].style.textShadow = "none";
  147. imgedits[14].style.border = "none";
  148. imgedits[14].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  149. names[15].style.textShadow = "none";
  150. imgedits[15].style.border = "none";
  151. imgedits[15].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  152. names[16].style.textShadow = "none";
  153. imgedits[16].style.border = "none";
  154. imgedits[16].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  155. names[17].style.textShadow = "none";
  156. imgedits[17].style.border = "none";
  157. imgedits[17].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  158. names[18].style.textShadow = "none";
  159. imgedits[18].style.border = "none";
  160. imgedits[18].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.4)";
  161.  
  162.  
  163. //Ad Blocker
  164. document.getElementsByClassName('WebgamesLink CrazygamesLink SmallTextLight')[0].remove();
  165. document.getElementsByClassName('partnersAndCredits SmallTextLight')[0].remove();
  166. document.getElementsByClassName('SmallTextLight')[0].remove();
  167. document.getElementsByClassName('AdContainer')[0].remove();
  168. document.getElementsByClassName('DiscordButton')[0].remove();
  169. document.getElementsByClassName('GameAdsBanner')[0].remove();
  170.  
  171. },100);

QingJ © 2025

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