Sleazy Fork is available in English.

Random Video Overlay

Displays an overlay with a button to load a random video on Pornhub.

  1. // ==UserScript==
  2. // @name Random Video Overlay
  3. // @namespace https://www.pornhub.com
  4. // @version 1.0
  5. // @description Displays an overlay with a button to load a random video on Pornhub.
  6. // @match https://www.pornhub.com/*
  7. // @grant none
  8. // @author Zenith
  9. // @license CC BY-NC-ND 4.0
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Create the overlay
  16. const overlay = document.createElement('div');
  17. overlay.style.position = 'fixed';
  18. overlay.style.bottom = '20px';
  19. overlay.style.right = '20px';
  20. overlay.style.background = 'rgba(0, 0, 0, 0.8)';
  21. overlay.style.color = 'white';
  22. overlay.style.padding = '10px';
  23. overlay.style.borderRadius = '5px';
  24. overlay.style.zIndex = '9999';
  25. overlay.innerHTML = `
  26. <h3>Can't find anything?</h3>
  27. <p>Click the button below watch a random video!:</p>
  28. <button id="randomVideoBtn">Load Random Video</button>
  29. `;
  30.  
  31. // Append the overlay to the body
  32. document.body.appendChild(overlay);
  33.  
  34. // Add event listener to handle button click
  35. const randomVideoBtn = document.getElementById('randomVideoBtn');
  36. randomVideoBtn.addEventListener('click', function() {
  37. loadRandomVideo();
  38. });
  39.  
  40. // Function to load a random video
  41. function loadRandomVideo() {
  42. const videoLinks = document.querySelectorAll('.thumbnail-info-wrapper .title a:not([data-ncid])');
  43. const randomIndex = Math.floor(Math.random() * videoLinks.length);
  44. const randomVideoLink = videoLinks[randomIndex].getAttribute('href');
  45. window.location.href = randomVideoLink;
  46. }
  47. })();