Skip age verification

We're all consenting adults here, skip the annoying age verification pages

La data de 10-06-2024. Vezi ultima versiune.

  1. // ==UserScript==
  2. // @name Skip age verification
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description We're all consenting adults here, skip the annoying age verification pages
  6. // @author You
  7. // @match *://*.pornhub.com/*
  8. // @icon https://icons.duckduckgo.com/ip2/pornhub.com.ico
  9. // @grant none
  10. // @license BSD
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Works for Pornhub, but let me know if you need other sites
  17. const button = document.querySelector('#modalWrapMTubes > div > div > button');
  18. if(button)button.click();
  19. })();