Skip to content

Instantly share code, notes, and snippets.

@Greenscreener
Last active June 8, 2023 07:07
Show Gist options
  • Save Greenscreener/94765d28e4903cde0d0ce12ff750991b to your computer and use it in GitHub Desktop.
Save Greenscreener/94765d28e4903cde0d0ce12ff750991b to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Turn off flicker for ECSC Bootcamp
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Stoopid
// @author Me
// @match https://ctf.ecsc2023.eu/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=ecsc2023.eu
// @grant none
// ==/UserScript==
(function() {
'use strict';
const s = document.createElement("style");
s.innerHTML = `main::before {
display:none;
}`;
document.body.appendChild(s);
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment