-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadfly.js
28 lines (26 loc) · 866 Bytes
/
adfly.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// ==UserScript==
// @name AdF.ly - Aproxtime Dev
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Skip countdown and redirect to real URL address
// @author Aproxtime Dev
// @match http://threadsphere.bid/*
// @updateURL https://raw.githubusercontent.com/aproxtimedev/adfly-bypass/master/adfly.js
// @downloadURL https://raw.githubusercontent.com/aproxtimedev/adfly-bypass/master/adfly.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
if ($("#skip_bu2tton").length == 1) {
while ($("#skip_bu2tton")[0].href === "") {
try{
cnt();
console.log('Trying to skip countdown');
}catch(e){
//entah
}
}
window.stop();
window.location=$("#skip_bu2tton")[0].href;
}
})();