Allows you to add more then 60 characters to exclude for Video search.
// ==UserScript==
// @name xHamster Exclude Extender
// @version 0.1
// @description Allows you to add more then 60 characters to exclude for Video search.
// @author DayZeroKing
// @match https://xhamster.com/search/*
// @grant none
// @namespace https://greasyfork.org/users/666437
// ==/UserScript==
(function() {
'use strict';
document.getElementsByName("exclude")[0].maxLength = 6000;
})();