NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name NoAge Pornhub // @author Maxsior // @description Remove аge verification on pornhub // @include http*://*.pornhub.*/* // @updateURL https://openuserjs.org/meta/Maxsior/NoAge_Pornhub.meta.js // @version 0.5 // @grant none // @icon https://bi.phncdn.com/www-static/favicon.ico?cache=12345678 // @license MIT // ==/UserScript== function rem() { var elem = document.getElementById('age-verification-container'); if (elem) { elem.style.display = "none"; document.getElementById('age-verification-wrapper').style.display = "none"; } else document.getElementById('verifyAgeWrapper').style.display = "none"; } window.addEventListener("DOMContentLoaded", rem); rem();