bkhallaf / True Freedom

// ==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();
})();