Skip to content

Instantly share code, notes, and snippets.

@emiflake
Last active October 30, 2019 14:36
Show Gist options
  • Save emiflake/f7cedaf58662dabda02914dd0e94b397 to your computer and use it in GitHub Desktop.
Save emiflake/f7cedaf58662dabda02914dd0e94b397 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Hide Blackhole
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://profile.intra.42.fr/users/*
// @match https://profile.intra.42.fr/
// @grant none
// ==/UserScript==
(function() {
'use strict';
var element = document.getElementById("goals_container");
element.parentNode.removeChild(element);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment