NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name True Freedom
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Seeking true freedom by removing the unprofessional move of LinkedIn
// @author bkhallaf
// @match https://www.linkedin.com/*
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById("inbug-nav-item").remove();
})();