Enter the username or e-mail you used in your profile. A password reset link will be sent to you by email.
Loading...
(function() {
var adsterraLink = "https://composedlubricantshared.com/xpp6knget?key=92ff494610f87c10ced77d99488cbea8";
var isWaiting = false; // THE MASTER SWITCH
function deployTrap() {
// If we are in the "waiting period," do NOT deploy a new trap
if (isWaiting) return;
var player = document.querySelector('.wps-player, .wps-video-wrapper, video, iframe');
if (player && !document.querySelector('.nina-reusable-overlay')) {
var overlay = document.createElement('div');
overlay.className = 'nina-reusable-overlay';
Object.assign(overlay.style, {
position: 'absolute', top: 0, left: 0, width: '100%', height: '100%',
zIndex: 999999, cursor: 'pointer', background: 'transparent'
});
overlay.onclick = function(e) {
e.preventDefault(); e.stopPropagation();
window.open(adsterraLink, '_blank');
overlay.remove();
// ACTIVATING THE WAIT: Stop the trap from coming back too soon
isWaiting = true;
setTimeout(function() {
isWaiting = false;
deployTrap(); // Now it's allowed to come back
}, 60000); // 60 seconds of peace for your users
};
player.parentNode.style.position = 'relative';
player.parentNode.appendChild(overlay);
}
}
// Check for player every 2 seconds, but the 'isWaiting' flag protects the user
setInterval(deployTrap, 2000);
// Re-arm immediately if they change the video (new page/URL)
var lastUrl = location.href;
new MutationObserver(() => {
if (location.href !== lastUrl) {
lastUrl = location.href;
isWaiting = false; // Reset the wait because it's a new video!
setTimeout(deployTrap, 1500);
}
}).observe(document, {subtree: true, childList: true});
})();