Earn 9.7$ in bitcoin daily (method using a script)

Status
Not open for further replies.

Alpha Wolf

Established
Guide :
1. Download tampermonkey:
2. Create new scripts.
3. Copy my script and add it.
4. Click BROWSING and it will automatically work.

Script :
// ==UserScript==
// name Surf
// @namespace Munem2x
// icon You do not have permission to view the full content of this post. Log in or register now.
// @version 2
// @description Auto surf
// @author Munem2x
// @match You do not have permission to view the full content of this post. Log in or register now.
// Grant none
// @require You do not have permission to view the full content of this post. Log in or register now.
// ==/UserScript==

$(document).ready(function(){
setInterval(function(){
if($(".green-text:not(:empty)")){
(function () {
var ids = {};
var found = false;
$('[id]').each(function() {
if (this.id && ids[this.id]) {
found = true;
console.warn('Duplicate ID #'+this.id);
dupid=this.id;
$('#'+dupid).mousedown();
$('#'+dupid).click();
$('#'+dupid).mouseup();
}
ids[this.id] = 1;
});
if (!found) console.log('No duplicate IDs found');
})();
}
},10000);
});

Thank you!
 
Status
Not open for further replies.

About this Thread

  • 11
    Replies
  • 3K
    Views
  • 4
    Participants
Last reply from:
QuickFingers

Online now

Members online
978
Guests online
1,624
Total visitors
2,602

Forum statistics

Threads
2,270,612
Posts
28,935,395
Members
1,240,911
Latest member
AlphaNoXD
Back
Top