Pornhub Redirect to Gayporn

Redirects Pornhub homepage to Gayporn section

  1. // ==UserScript==
  2. // @name Pornhub Redirect to Gayporn
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Redirects Pornhub homepage to Gayporn section
  6. // @author Your Name
  7. // @match *://*.pornhub.com/*
  8. // @grant none
  9. // @license MIT
  10.  
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. // Check if the current page is the Pornhub homepage
  16. if (window.location.hostname === "www.pornhub.com" && window.location.pathname === "/") {
  17. // Redirect to the Gayporn section
  18. window.location.href = "https://www.pornhub.com/gayporn";
  19. }
  20. })();