PaisaLive by TechHackerz

Paisa Live Auto Pilot

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

作者
pranjal
今日安裝
0
安裝總數
187
評價
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);
});
});
});