read the title
// ==UserScript==
// @name woomy.arras.io always draw health bar
// @namespace http://bzzzzdzzzz.blogspot.com/
// @description read the title
// @author BZZZZ
// @include /^https?\:\/\/woomy\.arras\.io\/([?#]|$)/
// @version 0.2
// @grant none
// @run-at document-start
// ==/UserScript==
(function(){
var a=document.createElement("div");
a.setAttribute("onclick","var r=()=>true;Object.defineProperty(Object.prototype,'drawsHealth',{'get':r,'set':r});");
a.click();
})();