Hides annoying cookie banners from the internet
// ==UserScript==
// @name Bye Cookie Notices
// @namespace https://entitybtw.ru
// @version 1.0
// @description Hides annoying cookie banners from the internet
// @author entitybtw
// @license MIT
// @match *://*/*
// @grant none
// ==/UserScript==
(function () {
const style = document.createElement('style');
style.textContent = `
[id*="cookie"], [class*="cookie"], [class*="consent"], [id*="consent"] {
display: none !important;
}
`;
document.head.appendChild(style);
})();