Skip to content

Instantly share code, notes, and snippets.

@cirrusUK
Created August 11, 2025 07:00
Show Gist options
  • Save cirrusUK/0b4a6af05850a231853f073f88b6d27c to your computer and use it in GitHub Desktop.
Save cirrusUK/0b4a6af05850a231853f073f88b6d27c to your computer and use it in GitHub Desktop.
t// ==UserScript==
// @name Xhamster age-verification remover
// @namespace https://xhamster.com/
// @version 0.1
// @description Remove age-verification
// @author MG
// @match https://*.xhamster.com/*
// @icon https://www.google.com/s2/favicons?domain=pornhub.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
Array.from(document.querySelectorAll('[id^="age-verification"]')).map((node) => {
if (typeof(node) !== 'undefined' && node !== null) {
node.parentNode.removeChild(node);
}
})
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment