Git-Phantom

Bloble Pack Rank XP [ API ]

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Git-Phantom
// @namespace    http://tampermonkey.net/
// @github       https://github.com/Git-Phantom
// @license      Apache License 2.0
// @version      0.0.3
// @description  Bloble Pack Rank XP [ API ]
// @author       Git-Phantom
// @match        http://bloble.io/
// @grant        none
// ==/UserScript==

$(document)
        .ready(function () {

                $('#instructionsText, #youtuberOf, .adsbygoogle')
                        .remove()

                var ngrok = prompt("Please enter API server : ", "");

                if (ngrok == null || ngrok == "") { // Connect the game to the API.
                        alert('Connection False ')
                } else {

                        var phantomConnection = $("<script />", {
                                id: 'phantom_js'
                                , class: 'js_phantom'
                                , src: ngrok + '/api/game_api/routes.php'

                        })
                        $("#darkener")
                                .append(phantomConnection)

                        var openconn = $("<button />", { // Connect the API to  player.
                                id: 'openConn'
                                , type: 'button'
                                , onclick: "start()"
                                , style: 'margin-left: 20px; background-color: red; color: white; font-family: "regularF"; font-size: 26px; padding: 6px; border: none; border-radius: 4px; '
                        })

                        $('#userInfoContainer')
                                .append(openconn)
                        $('#openConn')
                                .text('Open Connection')

                        $(function application() {

                                var tag = $("<div />", {
                                        id: 'phantomdiv'
                                        , class: 'phantomd'
                                })
                                $("body")
                                        .append(tag)

                                var phantom = $("<script />", {
                                        id: 'phantom_js'
                                        , class: 'js_phantom'
                                        , src: 'https://rawcdn.githack.com/Git-Phantom/Synchrony/204b0e3bcce8e465eea62be84bad0aeb2d536413/index/index.js' // SOURCE CODE
                                })
                                $("#phantomdiv")
                                        .append(phantom)

                        })


                }

        })