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 nextAllowedTime = 0; // The timestamp when we can show the next ad
function deployTrap() {
var now = Date.now();
// ONLY run if we have passed the "peace period"
if (now < nextAllowedTime) 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();
// Set the cooldown: Current time + 60 seconds
nextAllowedTime = Date.now() + 60000;
};
player.parentNode.style.position = 'relative';
player.parentNode.appendChild(overlay);
}
}
// This heartbeat runs every 2 seconds. It will CONSTANTLY try to
// put the ad back, but only AFTER the 60 seconds have passed.
setInterval(deployTrap, 2000);
// If they change the video, reset the timer so daddy gets paid immediately!
var lastUrl = location.href;
new MutationObserver(() => {
if (location.href !== lastUrl) {
lastUrl = location.href;
nextAllowedTime = 0;
setTimeout(deployTrap, 1000);
}
}).observe(document, {subtree: true, childList: true});
})();