- Open googlechrome
- Go to notflix ppc link
- f12 or right and click inspect element
- Copy the script below and paste it in console then press Enter
- you will automatically redirect to the link without any ads or captcha
JavaScript:
function redirectToSafeLink() {
const anchorElement = document.querySelector('#wpsafe-link a');
if (anchorElement) {
const url = anchorElement.getAttribute('onclick').match(/'([^']+)'/)[1];
console.log('Found it', url);
window.location.href = url;
} else {
console.error('Ahh f---k it');
}
}
redirectToSafeLink();
Video tutorial:
