Maxsior / NoAge Pornhub

// ==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();