// ==UserScript==At the risk of going completely off topic I invite anyone to try the UK Gov's site and see just how user-hostile it is…
// @name Nuke Universal Jobmatch cookie warning banner
// @namespace http://jobsearch.direct.gov.uk
// @version 1.1
// @grant GPL
// ==/UserScript==
var div = document.getElementById("cookieBanner");
if (div) {
div.parentNode.removeChild(div); // Removes it entirely
}