-
Notifications
You must be signed in to change notification settings - Fork 0
/
Opizo.meAdsTimerBypass.user.js
45 lines (41 loc) · 1.18 KB
/
Opizo.meAdsTimerBypass.user.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// ==UserScript==
//
// @name opizo.me - Skip the advertising countdown timer.
// @description Bypassing the https://opizo.me countdown timer by override a local variable called 'count', This variable is the time-intervals counter.
//
// @author AliReza Chegini Aka. nimaarek <[email protected]>
// @version 1.0
// @namespace https://github.com/nimaarek
// @license MIT
//
// @downloadURL https://raw.github.com/nimaarek/SkipOpizoAdsTimer/master/Opizo.meAdsTimerBypass.user.js
// @updateURL https://raw.github.com/nimaarek/SkipOpizoAdsTimer/master/Opizo.meAdsTimerBypass.user.js
//
// @match *://*.opizo.me/*
// @run-at document-body
// @grant none
// @unwrap
//
// ==/UserScript==
// gobal variable
var NOP = 0;
// main_function
const Make_ = {
bypass () {
// console.log('time-intervals count value:')
// console.log(window.count)
window.count = NOP
}
}
// Execution of main_function at specified times
switch (document.readyState) {
case "loading":
break;
case "interactive": {
Make_.bypass();
break;
}
case "complete":
break;
}
// THE END - GoodGame!