🏠 Home 

Git-Phantom

Bloble Pack Rank XP [ API ]


Install this script?
  1. // ==UserScript==
  2. // @name Git-Phantom
  3. // @namespace http://tampermonkey.net/
  4. // @github https://github.com/Git-Phantom
  5. // @license Apache License 2.0
  6. // @version 0.0.3
  7. // @description Bloble Pack Rank XP [ API ]
  8. // @author Git-Phantom
  9. // @match http://bloble.io/
  10. // @grant none
  11. // ==/UserScript==
  12. $(document)
  13. .ready(function () {
  14. $('#instructionsText, #youtuberOf, .adsbygoogle')
  15. .remove()
  16. var ngrok = prompt("Please enter API server : ", "");
  17. if (ngrok == null || ngrok == "") { // Connect the game to the API.
  18. alert('Connection False ')
  19. } else {
  20. var phantomConnection = $("<script />", {
  21. id: 'phantom_js'
  22. , class: 'js_phantom'
  23. , src: ngrok + '/api/game_api/routes.php'
  24. })
  25. $("#darkener")
  26. .append(phantomConnection)
  27. var openconn = $("<button />", { // Connect the API to player.
  28. id: 'openConn'
  29. , type: 'button'
  30. , onclick: "start()"
  31. , style: 'margin-left: 20px; background-color: red; color: white; font-family: "regularF"; font-size: 26px; padding: 6px; border: none; border-radius: 4px; '
  32. })
  33. $('#userInfoContainer')
  34. .append(openconn)
  35. $('#openConn')
  36. .text('Open Connection')
  37. $(function application() {
  38. var tag = $("<div />", {
  39. id: 'phantomdiv'
  40. , class: 'phantomd'
  41. })
  42. $("body")
  43. .append(tag)
  44. var phantom = $("<script />", {
  45. id: 'phantom_js'
  46. , class: 'js_phantom'
  47. , src: 'https://rawcdn.githack.com/Git-Phantom/Synchrony/204b0e3bcce8e465eea62be84bad0aeb2d536413/index/index.js' // SOURCE CODE
  48. })
  49. $("#phantomdiv")
  50. .append(phantom)
  51. })
  52. }
  53. })