// ==UserScript==
// @name PPC Bypass Script
// @namespace http://tampermonkey.net/
// @version 2024-07-29
// @description try to take over the world!
// @author You
// @match https://notflix.in/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=google.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
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();
})();