Sleazy Fork is available in English.

Skip age verification

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

// ==UserScript==
// @name         Skip age verification
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  We're all consenting adults here, skip the annoying age verification pages
// @author       You
// @match        https://www.pornhub.com/
// @icon         https://icons.duckduckgo.com/ip2/pornhub.com.ico
// @grant        none
// @license      BSD
// ==/UserScript==

(function() {
    'use strict';

	// Works for Pornhub, but let me know if you need other sites
	const button = document.querySelector('#modalWrapMTubes > div > div > button');
	if(button)button.click();
})();