surviv.io show HP

ああああああああああああああああああああ

Versión del día 20/12/2018. Echa un vistazo a la versión más reciente.

// ==UserScript==
// @name         surviv.io show HP
// @namespace    http://tampermonkey.net/
// @version      1
// @description  ああああああああああああああああああああ
// @author       恋ポケ
// @match        http*://*surviv.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
setTimeout(function(){
var thebaba = document.getElementById("ui-bottom-center-0");
var thecocuk = document.createElement("div");
    thecocuk.innerHTML = '<a id="HP" style="color: blue; font-size: 25px;">hp</a>';
    thebaba.appendChild(thecocuk);
    thebaba.insertBefore(thecocuk, thebaba.firstChild);
},0);

setInterval(function (){
document.getElementById("HP").innerHTML = "HP : " + document.getElementById("ui-health-actual").style.width.slice( 0, -1 ) ;
},250);
})();