PaisaLive by TechHackerz

Paisa Live Auto Pilot

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        PaisaLive by TechHackerz
// @namespace   http://TechhackerZ.com/
// @description Paisa Live Auto Pilot
// @require     https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js
// @include     http://*.paisalive.com/inbox.asp*
// @include     http://paisalive.com/inbox.asp*
// @include     http://*.paisalive.com/inbox.asp
// @grant       unsafeWindow
// @grant       GM_addStyle
// @version     1
// ==/UserScript==
GM_addStyle("body, input{font-family:calibri,arial;} .banner{background-color:black;background:url(http://www.css3maker.com/images/banner.png) repeat scroll 0 0 transparent;bottom:0px;display:block;height:0;position:fixed;width:100%;margin:0 auto;padding:0}.banner_container .close{background:url(http://www.css3maker.com/images/btn_close.png) no-repeat scroll left top transparent;display:block;height:17px;position:absolute;right:0;top:-17px;width:26px}.banner_container{color:#FFF;position:relative;text-align:left;width:950px;margin:0 auto;padding:10px} .banner_container input{display:inline;}");
$(function(){
	$("body").append('<div class="banner" style="height: 40px; width:100px; right:20px; color:white; padding:5px; border-radius:5px; top:3px; overflow:auto; display: block;"><a href="http://TechHackerZ.com/" target="_blank" id="start">Click Here to Start Checking Mail</a></div>');
	$("#start").click(function(){
		$(this).parent().html("Reload this Page after 5sec.");
		$("#demo1_table tr td a").each(function(){
			var moneylink = $(this).attr('href');
			var mainlink = moneylink.replace("messages.asp?id=","rd.asp?id=");
			if(mainlink.indexOf("essages.")==-1){
				$.get(mainlink);
			}
			$(this).attr('href',mainlink).attr('target',"_blank").addClass("deleteit");
			console.log(mainlink);
		});
		
		$(".deleteit").click(function(){
			var curr = $(this);
			var boxit = $(curr).parent().parent();
			$(boxit).hide();
			var dellink = $(boxit).find("td:last a").attr('href');
			setTimeout(function(){$.get(dellink);},10000);
		});
	});
});