Greasy Fork

block my wp cookie banner (bmwcb)

removes these stupid cookie banners while your trying to copy someones work.

当前为 2025-04-23 提交的版本,查看 最新版本

// ==UserScript==
// @name         block my wp cookie banner (bmwcb)
// @namespace    http://tampermonkey.net/
// @version      2025-04-23
// @description  removes these stupid cookie banners while your trying to copy someones work.
// @author       GREGDGamer1
// @match        https://*.wordpress.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=wordpress.com
// @grant        none
// @license You can modify as long as you credit m
// ==/UserScript==

const elementToRemove = document.querySelector('.widget.widget_eu_cookie_law_widget');
const data = {
  elementExists: !!elementToRemove,
};
if (elementToRemove) {
  elementToRemove.remove();
}