Skip to content

Instantly share code, notes, and snippets.

@Aciid
Last active March 18, 2023 16:46
Show Gist options
  • Save Aciid/f3dde5e1bac70eb3011fc85c9cb1b6d5 to your computer and use it in GitHub Desktop.
Save Aciid/f3dde5e1bac70eb3011fc85c9cb1b6d5 to your computer and use it in GitHub Desktop.
HTB-CTF-REMOVE-FEED
// ==UserScript==
// @name HTB-CTF-REMOVE-FEED
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://ctf.hackthebox.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.addEventListener('load', function() {
document.querySelector('.ctf-feed').remove()
}, false);
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment