scirpt phiên bản mới mạng càng mạnh chạy càng nhanh, đặc biệt không chiếm chuột
lưu ý thấy 1 lúc không lên tiền thì là do trang adiphy bị quá tải nhé, cứ đợi 1 lúc là đc, 1 lúc ko đc thì f5 nhé
= > 1 tải add-on dành cho google chorme hoặc cốc cốc : https://chrome.google.com/webstore/detail/custom-javascript-for-web/poakhlngfciodnhlhhgnaaelnpjljija
= > 2 các bạn vào http://adiphy.com/ copy code bên dưới vào lưu lại(nhớ xóa dòng // Here You can type your custom JavaScript...) , lưu ý click vào Enable như hình nhé
sau khi add xong thì trên trang chủ adiphy sẽ xuất hiện 2 nút Xanh là chạy đỏ là Stop
có lỗi lầm gì thì liên hệ fb em https://www.facebook.com/zbotvnz
lưu ý thấy 1 lúc không lên tiền thì là do trang adiphy bị quá tải nhé, cứ đợi 1 lúc là đc, 1 lúc ko đc thì f5 nhé
= > 1 tải add-on dành cho google chorme hoặc cốc cốc : https://chrome.google.com/webstore/detail/custom-javascript-for-web/poakhlngfciodnhlhhgnaaelnpjljija
= > 2 các bạn vào http://adiphy.com/ copy code bên dưới vào lưu lại(nhớ xóa dòng // Here You can type your custom JavaScript...) , lưu ý click vào Enable như hình nhé
Code:
var Form=$("#user_balance");
var alias=$('.item-site:first').parent().find(".item-alias").text();
var first_token;
var current_token;
$('.infostop:first').prepend('<li><button id="stop" type="button" class="btn btn-danger" style="height:50px;width:80px;">Stop</button></li>');
$('.infostop:first').prepend('<li><button id="start" type="button" class="btn btn-primary" style="height:50px;width:80px;">Start</button></li>');
$('#start').click(function(){
flag=1;
run();
});
$('#stop').click(function(){
flag=0;
});
function run(){
var interval_obj = setInterval(function(){
$.ajax({
type:"POST",
url:Form.attr('action'),
data:Form.serialize(),
async:true,
success:function(result,status,xhr){
if(result.status==='success'){
first_token=current_token;
current_token=result.token;
if(first_token!=current_token)
{
var request='http://adiphy.com/links/go?callback=fn_Pay&method=POST&token='+current_token+'&alias='+alias;
$.get(request, function(data){
get_user_balance();
})
}
}
},
error:function(xhr,status,error){
console.log("An error occured: "+xhr.responseText);
}
})
if(flag===0)
clearInterval(interval_obj);
}, 2000);
}
function get_user_balance(){
var Form=$("#user_balance");
$.ajax({
type:"POST",
url:Form.attr('action'),
data:Form.serialize(),
async:true,
success:function(result,status,xhr){
if(result.status==='success'){
$('span.user_balance').html(result.balance);
$('span.h-item-value').html(result.clicks);
$('#user-token').html(result.token);
}
},
error:function(xhr,status,error){
console.log("An error occured: "+xhr.responseText);
}
});
}
có lỗi lầm gì thì liên hệ fb em https://www.facebook.com/zbotvnz
Last edited: