Last active
June 8, 2023 07:07
-
-
Save Greenscreener/94765d28e4903cde0d0ce12ff750991b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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