What's new

Referral Earn by watching YøùTùbé videos no need to referral using Tampermonkey SPEEDHÄÇK for every videos!! w/ macro for auto play [PROOF OF wíhdráwAL]

Ok to para sa mga walang ibang option kumita. Tinry ko sya, ok lalo kapag may macro ka, kaso need mo din bantayan kasi may captcha. 3-4 hours para makumpleto yung 900 na video per day.
 
Gumagana siya sakin, legit tricks thank you so much ts!!

Copy niyo lang to eto yung script sa TAMPERMONKEY
// ==UserScript==
// name Timer Accelerator
// namespace Home | Tampermonkey
// VERSION 1.0.1
// @license GNU AGPLv3
// @description Accelerates time by decreasing the durations of time for timers, in order to shorten the time to wait for something. This script is intended to be used for decreasing the waiting time for file downloads. This script will only work on download sites which do not track the waiting time from the server, or if the waiting time is not JavaScript driven.
// @author jcunews
// match ://bestytvid.phc.onl/#forbidden#/
// match ://otherdownloadsite.com/files/
// Grant none
// RUN-at document-start
// ==/UserScript==

//Note: this script should be applied only for specific sites. So, once the script is installed, change the above match metadata.

(function() {

//=== CONFIGURATION BEGIN ===

//Note: durations are in milliseconds. 1000ms = 1 second.

//Duration to use when the timer is 1 second.
//It's usually used for decrease a counter every second.
//If shortDuration is 50ms, the counter will be decreased every 50ms. So if the waiting time is e.g. 30 seconds, it will become 600ms.
var shortDuration = 500;

//Duration to use when the timer is more than 1 second.
//It's usually used to trigger download after e.g. 30 seconds.
//If longDuration is 1 second when the waiting time is 30 seconds, it will become 1 second.
var longDuration = 5000;

//=== CONFIGURATION END ===

var si = setInterval;
setInterval = function(fn, duration) {
if (duration >= 1000) duration = duration === 1000 ? shortDuration : duration;
return si.apply(this, arguments);
};
var st = setTimeout;
setTimeout = function(fn, duration) {
if (duration >= 1000) duration = duration === 1000 ? shortDuration : longDuration;
return st.apply(this, arguments);
};
})(
Up up

paano malaman if working na yung script? di ko sure if tama at gumagana ba ginawa ko 😆
Saang script boss?

Ok to para sa mga walang ibang option kumita. Tinry ko sya, ok lalo kapag may macro ka, kaso need mo din bantayan kasi may captcha. 3-4 hours para makumpleto yung 900 na video per day.
Yesss 3-4hrs lang naman siya, then after nun edi sa ibang sites ka naman if ever may pagkakakitaan kapa na iba maganda siya for option dahil kagaya kakanood naka 1$ na kaagad 5 days lang
 
Kakaiba ung sakin ung countdown sobrang bilis bumababa tapos maghahang parang ung real countdown pa din ung tagal ng pag hang bago lumipat ng video 😅 may need ba i-edit sa script?

Naging 300 seconds ung countdown 🤣
 
Last edited:
Kakaiba ung sakin ung countdown sobrang bilis bumababa tapos maghahang parang ung real countdown pa din ung tagal ng pag hang bago lumipat ng video 😅 may need ba i-edit sa script?

Naging 300 seconds ung countdown 🤣
You mean sa 300 yung seconds nung video? Gagi normal yan skip molang yan dahil di naman ganon kataas yung bigay

Kakaiba ung sakin ung countdown sobrang bilis bumababa tapos maghahang parang ung real countdown pa din ung tagal ng pag hang bago lumipat ng video 😅 may need ba i-edit sa script?

Naging 300 seconds ung countdown 🤣
Try mo edit boss taasan mo nalang gawin mong 1.5 speed mas okay yan kesa 2x speed
 
Grind grind lang haha
Screenshot_2024-02-17-14-07-45-727_com.android.chrome.jpg
 

Attachments

Back
Top