Moomoo.io modded UI

Removes unnecessary cards and ads, and makes changelog text bigger when updated (Working as of Apr 15)

目前为 2017-04-17 提交的版本。查看 最新版本

// ==UserScript==
// @name         Moomoo.io modded UI
// @version      1.1.1
// @description  Removes unnecessary cards and ads, and makes changelog text bigger when updated (Working as of Apr 15)
// @author       someRandomGuy
// @match        *://moomoo.io/*
// @namespace https://gf.qytechs.cn/users/117222
// ==/UserScript==
g('setupCard').id='SetupCard';
var day=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"], Mo=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];
var a=new Date(), b=day[a.getDay()]+", "+a.getDate()+" "+Mo[a.getMonth()]+" "+(a.getFullYear()+2)+" 12:00:00 UTC",
	cardsx=[g('adCard'),g("youtuberOf"),g('twitterFollow'),g('linksContainer1'),g('guideCard'),g('setupCard')], card=cardsx.slice();
card.push(g('linksContainer2'));

function g(e){return document.getElementById(e);}
function remove(e){
	if(e.push===undefined){
		if(e){
			e.parentElement.removeChild(e);
			return true;
		}else{
			return false;
		}
	}else{
		e.forEach(function(ob){
			remove(ob);
		});
	}
}
function getCookie(e){
	var c=document.cookie,g;
	c=c.split('; ');
	c.forEach(function(ob){
		var f=ob.split('=');
		if(f[0]==e){
			g=f[1];
			return;
		}
		return;
	}
			 );
	if(g!==undefined){
		return g;
	}else{
		return null;
	}
}
document.onreadystatechange=function(){
	g('SetupCard').id='setupCard';
	remove(cardsx);
	g('menuCardHolder').style="opacity: 0.9;display: block;";
	card[6].style="opacity: 0.5;display: block;";
	card[6].innerHTML=card[6].innerHTML.substring(0,86);
	if(card[6].innerText!=getCookie("tampermoneySaveChangelog")){
		card[6].style="opacity: 1; display: block;";
		card[6].children[0].style="font-size: 50px;";
		card[6].children[0].addEventListener('click',function(){
			document.cookie=('tampermoneySaveChangelog='+card[6].innerText+"; expires="+b+"; path=/");
			card[6].children[0].style="";
			card[6].style="opacity: 0.5;display: block;";
		},false);
	}else{
		document.cookie=('tampermoneySaveChangelog='+card[6].innerText+"; expires="+b+"; path=/");
	}
	
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址