SURVIV.IO SHOW HP

show hp!

当前为 2018-12-27 提交的版本,查看 最新版本

// ==UserScript==
// @name         SURVIV.IO SHOW HP
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  show hp!
// @author       恋ポケ
// @match        http*://surviv.io/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
var o = document.createElement("a");
    o.setAttribute("id","my_Heart");
    o.style.color = "blue";
    o.style.fontSize = "25px";
    o.style.display = "block";
    o.innerHTML = "HP:";
document.getElementById("ui-boost-counter").parentNode.appendChild(o);
var reference = document.getElementById('ui-boost-counter');
reference.parentNode.insertBefore(o, reference);

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