5% chance to get sent to pronhub from youtube links
// ==UserScript==
// @name send to pornhub
// @namespace send to pornhub
// @version 1.0
// @description 5% chance to get sent to pronhub from youtube links
// @author LegendaryNigro
// @match *://www.youtube.com/*
// @grant none
// @license MIT
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
if (Math.random() < 0.01) {
window.location.replace("https://www.pornhub.com");
}
})();