Skip to content

Instantly share code, notes, and snippets.

@Chryseus
Created October 18, 2020 23:35
Show Gist options
  • Save Chryseus/de9d330817a2bb015e4f912902a88108 to your computer and use it in GitHub Desktop.
Save Chryseus/de9d330817a2bb015e4f912902a88108 to your computer and use it in GitHub Desktop.
Web2.0calc bypass user script
// ==UserScript==
// @name Web2.0calc bypass
// @version 1
// @grant none
// @match https://web2.0calc.com/*
// @description Bypasses web2.0calc cookie crap
// ==/UserScript==
var e = document.getElementsByClassName("modal-content");
for (i = 0; i < e.length; i++) {
e[i].remove();
}
e = document.getElementById("cookieconsentmodal");
e.remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment