NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name LinkedIn Incognito // @description Hides login and enables the scroll for LinkedIn Incognito // @author Brs // @include https://*.linkedin.com/* // @version 1.0 // @features Crazy // @license MIT // ==/UserScript== setTimeout(function () { if (document.getElementById("advocate-modal")) { document.getElementById("advocate-modal").classList.value = "show-reg hide"; } else { console.log("del") } document.body.style = "overflow:visible"; }, 3000);