PaisaLive by TechHackerz

Paisa Live Auto Pilot

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

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

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

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

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

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

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

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

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

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

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

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

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

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

作者
pranjal
日安装量
0
总安装量
189
评分
0 0 0
版本
1
创建于
2014-08-05
更新于
2014-08-05
大小
2.0 KB
许可证
暂无
适用于

// ==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('

Click Here to Start Checking Mail

');
$("#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);
});
});
});