📲 Platform Overhaul — May 2026: Desktop Video Earning Is Dead
MakeYouTask completed a full platform overhaul in May 2026. Video earning is now mobile-only — permanently. Videos do not load and do not earn credit in any desktop browser. The Tampermonkey scripts described in this guide no longer function for the video/MicroEarn section on desktop. This is not a bug you can work around; the earning pathway itself was removed from the desktop platform. A new Android/MacroDroid macro for the updated mobile platform is in development. PTC (paid-to-click) automation on desktop is unaffected — that is what these scripts now primarily do.
⚡ Update – March 2026: Macro V2 Is Being Trialed
Based on reader feedback, we've updated the Terminator script (Script #2) with smarter error handling — it now auto-restarts short videos, closes age-restricted and unavailable video tabs automatically, handles live stream queues, and attempts to auto-click the captcha widget. It should run even smoother. Script #1 (Dashboard Manager) is unchanged.
There's also a V3: Macro V3 — further refinements →
Disclosure
This article contains referral links to MakeYouTask. If you sign up through our link, we may earn a commission at no cost to you. We only recommend platforms we've personally tested. See our full disclaimer.
2026 status: MakeYouTask video earning is now mobile-only after the May 2026 platform overhaul — the desktop Tampermonkey scripts in this guide no longer work for the video section. PTC (paid-to-click) automation on desktop is still fully functional. The two Tampermonkey scripts below automate the PTC click cycle: Script #1 (Dashboard Manager) finds and clicks fresh ad buttons; Script #2 (Terminator) handles tab management and auto-verifies after captchas. After a one-time setup, the scripts handle the repetitive clicking — you step in only for captchas.
If you've been in the micro-earning space for a while, you know most "watch videos and earn" sites either pay peanuts… or don't pay at all.
MakeYouTask is different.
MakeYouTask is a modern GPT (Get-Paid-To) platform that actually pays — and in my experience, pays more consistently and at higher rates than most micro-earning sites in this category. The interface is clean, the earning options are solid, and the withdrawal system works.
If you want my full breakdown (withdrawals, rates, proof, pros/cons), you can check out my detailed review here:
👉 Click here for the full MakeYouTask review
But in this post, I'm going to show you something still very much worth doing:
How to automate the repetitive PTC (paid-to-click) cycle using two simple Tampermonkey scripts — so you can let it run in a background tab while watching Netflix, gaming, or working on something else.
Note: this guide originally covered video/MicroEarn automation. After the May 2026 platform overhaul, video earning on desktop was removed entirely. The scripts below now automate the PTC section, which still runs on desktop without issues.
💰 Why I'm Sharing This
I earn a small commission when you use my referral links. But here's the thing: the more you make, the more I make. So I want to make this as easy and as profitable as possible for you. Use these macros to maximize your earnings — let me help you earn a lot of cash.
⚠️ Important - Use Responsibly
These macros are designed to make the process easier, not to fully bot the site. You still need to be present, solve captchas manually, and monitor the process. Don't run it unattended 24/7 or violate MakeYouTask's Terms of Service. Use it as an assist tool — not an unsupervised bot — and you significantly reduce the risk of any account action.
Why Automate MakeYouTask?
The PTC (paid-to-click) section is one of the most consistent desktop earners on MakeYouTask. The MicroEarn video section was also a strong earner — but as of May 2026 that runs mobile-only. What's left on desktop is the PTC cycle, and it's still repetitive:
- Click video
- Wait
- Confirm
- Repeat
- Repeat
- Repeat
Do that 200+ times and you'll understand why automation helps.
With a macro:
- It auto-clicks the repetitive buttons
- Moves to the next video
- Keeps the flow going
- You only step in when a captcha appears
This turns active clicking into semi-passive income.
Step 1 – Sign Up to MakeYouTask
Before anything else:
👉 Head over to MakeYouTask using my referral link (this helps support the blog and often gives you a small starting bonus).
Referral link - helps support this blog
Create your account and log in.
Step 1b – Open a Crypto Wallet (FaucetPay)
Before you can withdraw your earnings, you need a crypto wallet that supports micro-payments.
I recommend FaucetPay — it's the most popular wallet for micro-earning sites and supports instant withdrawals from MakeYouTask.
👉 Click here to open a crypto wallet at FaucetPay
Free wallet • Instant withdrawals • Send to any crypto exchange
Once you have your FaucetPay wallet:
- Link it to your MakeYouTask account
- Cash out instantly (as low as $0.10)
- Send your earnings to any crypto exchange of your choosing
Now you're ready to automate and start earning.
Step 2 – Install Tampermonkey (Chrome)
To run the macros, you need a browser extension called Tampermonkey.
How to Install:
- Open Chrome
- Go to the Chrome Web Store
- Search for "Tampermonkey"
- Click Add to Chrome
- Confirm installation
Once installed, you'll see a black square icon in your extensions bar.
Step 3 – Add My 2 Automation Scripts
Now we'll install the two scripts I personally use.
How to Add a Script:
- Click the Tampermonkey icon
- Click Create a new script
- Delete the default code
- Paste in Script #1 (below)
- Click File → Save
- Repeat the process for Script #2
Script #1 – Auto Start & Navigation Macro
This script automatically finds and clicks fresh "Watch Video" buttons on the MakeYouTask dashboard.
Copy this entire script:
// ==UserScript==
// @name PTC Dashboard Manager (Persistent)
// @match *://makeyoutask.com/ptc*
// @grant none
// @version 2026.02.11
// ==/UserScript==
(function() {
'use strict';
const MAX_HISTORY = 100;
function processDashboard() {
if (document.hidden) return;
// 1. Handle "OK" / Success Popups
const okBtn = document.querySelector('.swal2-confirm');
if (okBtn && okBtn.offsetParent !== null) {
console.log("[PTC] Success popup found. Clicking OK...");
okBtn.click();
return;
}
// 2. Get click history
let clickedAds = JSON.parse(localStorage.getItem('ptc_clicked_history') || "[]");
// 3. Find fresh ads
let availableAds = Array.from(document.querySelectorAll('a, button')).filter(el => {
const textMatch = el.innerText.includes("Watch Video");
const isVisible = el.offsetParent !== null;
const adId = el.href || el.innerText + el.className;
return textMatch && isVisible && !clickedAds.includes(adId);
});
// 4. Click next available
if (availableAds.length > 0) {
const targetAd = availableAds[0];
const targetId = targetAd.href || targetAd.innerText + targetAd.className;
console.log("[PTC] Next ad found. Clicking in 3s...");
setTimeout(() => {
clickedAds.push(targetId);
if (clickedAds.length > MAX_HISTORY) clickedAds.shift();
localStorage.setItem('ptc_clicked_history', JSON.stringify(clickedAds));
targetAd.scrollIntoView({ behavior: 'smooth', block: 'center' });
targetAd.click();
}, 3000);
} else {
console.log("[PTC] No new ads found on this page.");
}
}
setInterval(processDashboard, 5000);
})();
What this script does:
- Automatically clicks "OK" on success popups
- Finds fresh "Watch Video" buttons
- Tracks clicked ads (won't click the same ad twice)
- Auto-clicks the next available task
Script #2 – Auto Repeat Macro
This script handles the video viewing process: auto-plays videos, waits for you to solve captchas, then auto-clicks verify.
Copy this entire script:
// ==UserScript==
// @name PTC Video & Tab Handler (Terminator)
// @match *://*/ptc/view/*
// @match *://*.youtube.com/embed/*
// @match *://www.youtube.com/watch*
// @grant window.close
// @run-at document-start
// @allFrames true
// ==/UserScript==
(function() {
'use strict';
const hostname = window.location.hostname;
const pathname = window.location.pathname;
// 1. YouTube Embed Logic (Autoplay)
if (hostname.includes('youtube.com') && pathname.includes('/embed/')) {
const forcePlay = () => {
const video = document.querySelector('video');
if (video) {
video.muted = true;
video.volume = 0;
const player = document.querySelector('#movie_player');
if (player && typeof player.playVideo === 'function') {
player.playVideo();
}
video.play().catch(() => {
const bigPlay = document.querySelector('.ytp-large-play-button');
if (bigPlay) bigPlay.click();
});
}
};
const playInterval = setInterval(() => {
const v = document.querySelector('video');
if (v && v.paused) forcePlay();
else if (v && !v.paused) clearInterval(playInterval);
}, 1500);
setTimeout(() => clearInterval(playInterval), 15000);
}
// 2. Watch Page Logic (Aggressive Termination)
if (hostname.includes('youtube.com') && pathname.startsWith('/watch')) {
console.log("[PTC] Termination sequence initiated...");
const terminate = () => {
window.close();
const script = document.createElement('script');
script.text = "window.open('','_self').close();";
document.body.appendChild(script);
if (!window.closed) {
window.location.href = "about:blank";
setTimeout(() => window.close(), 500);
}
};
setTimeout(terminate, 1200);
setTimeout(terminate, 3000);
}
// 3. PTC Verification Logic (With Cloudflare/Captcha Check)
if (window.top === window.self && pathname.includes('/ptc/view/')) {
const checkCaptchaAndVerify = setInterval(() => {
// Check for the hidden Cloudflare response token
const cfResponse = document.querySelector('[name="cf-turnstile-response"]')?.value ||
document.querySelector('[name="g-recaptcha-response"]')?.value;
// If length is > 10, it means the captcha is solved and the token is ready
const isSolved = cfResponse && cfResponse.length > 10;
const btn = document.querySelector('#verify');
// Logic: Button exists + visible + not disabled + captcha is confirmed
if (btn && !btn.disabled && btn.offsetParent !== null && isSolved) {
clearInterval(checkCaptchaAndVerify);
console.log("[PTC] Captcha confirmed. Finalizing in 2s...");
setTimeout(() => {
btn.click();
console.log("[PTC] Claim clicked.");
}, 2000);
} else if (btn && !isSolved) {
// Keep checking until user solves or Cloudflare auto-passes
console.log("[PTC] Waiting for Captcha completion...");
}
}, 2000);
}
})();
What this script does:
- Auto-plays YouTube videos (muted)
- Auto-closes completed video tabs
- Waits for you to solve captchas
- Auto-clicks verify button AFTER captcha is solved
✓ Both Scripts Installed
Once both scripts are saved in Tampermonkey, you're ready to test the automation.
Step 4 – Navigate to the PTC / MicroEarn Section
📲 May 2026 Overhaul: Video Earning Moved to Mobile
After the platform overhaul, the video earning section no longer loads on desktop. These scripts now apply to the PTC (paid-to-click) ad section only when running on desktop. If you want to earn from videos, you need the mobile app. See the full overhaul breakdown for what changed and what still works.
Once both scripts are installed:
- Log into MakeYouTask
- Go to the PTC section (desktop automation applies here)
- Let Script #1 find and click available ad tasks
- Script #2 handles the view page and auto-verifies after captchas
You'll see the page automatically progressing through the cycle.
VERY IMPORTANT – You Still Must Monitor It
This is not a "set it and forget it" bot.
You must:
- Complete captchas when they appear
- Make sure videos are actually loading
- Check your balance occasionally
- Ensure the script hasn't stalled
Think of it as semi-passive, not fully automated.
How This Becomes Real Passive Income
Here's where it gets powerful.
Instead of:
Spending 1–2 hours manually clicking…
You:
- Let it run in a tab while you do other things
- Watch Netflix
- Play a game
- Work on your blog
- Study
- Trade
You're earning while doing something else.
Just check back periodically to solve captchas and monitor progress.
Now compound it.
Take your earnings and:
- Buy referrals (MakeYouTask has a referral marketplace)
- Reinvest profits
- Scale your daily returns
This is how small micro earnings turn into something meaningful.
Why This Works So Well on MakeYouTask
MakeYouTask is:
- Stable
- Consistent
- Higher paying than most competitors
- Structured for volume
When you remove the repetitive clicking, earning becomes efficient.
And efficient earning can be scaled.
Real Results
With these 2 scripts running on the PTC section, you can process ad tasks far faster than clicking manually — typically $0.05–$0.15 per active hour, with almost none of that time spent on actual clicking. Let them run in a background tab while you focus on more valuable tasks or just sit back and let the earnings accumulate.
Ban Risk: Low If You Follow the Rules
As long as you're present, solving captchas manually, and not running it completely unattended 24/7, the risk is low. These macros automate repetitive clicking — they don't bypass captchas or exploit platform security. The captcha still requires a human. That said, always check MakeYouTask's current Terms of Service yourself; platform rules change and I can't guarantee anything on their behalf.
Final Thoughts
If you're serious about squeezing maximum value out of micro-earning sites, this is one of the smartest ways to do it.
Here's the simple formula:
- Sign up via my referral link
- Install Tampermonkey
- Add the two scripts
- Navigate to the PTC section and let the scripts run
- Monitor + complete captchas
- Reinvest and compound
It's simple.
It's efficient.
And it turns boring repetition into leveraged time.
👉 Ready to start automating?
Join MakeYouTask Now (Free)$0.10 min withdrawal • FaucetPay & CWallet supported
If you haven't read the full breakdown of MakeYouTask yet, make sure you check out my full review here:
👉 Read the complete MakeYouTask review
The Bottom Line
These 2 macros remove 90% of the repetitive clicking from MakeYouTask's PTC section (desktop). MicroEarn video is mobile-only now — that battle is lost on desktop. But the PTC cycle is still automatable, still earns, and these scripts still do the job. Solve captchas when they pop up. Everything else runs on autopilot.
Related Reading
- MakeYouTask Review – Full Platform Breakdown
- MakeYouTask May 2026 Overhaul – What Changed
- MakeYouTask Automation Macro V2
- MakeYouTask Automation Macro V3 – Further Refinements
- MakeYouTask New Faucet – Claim Every 20 Minutes
- MakeYouTask in 2026 – Our Experience So Far
- CoinPayU Review – Another PTC Site Worth Automating
- FaucetPay Review – Where to Withdraw Your Earnings
- Best Passive Income Apps 2026
- PTC & Faucet 30-Day Earnings Test
- More Blog Posts
Was this article helpful?