NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name WebStagram Popup remover. // @version 0.5 // @namespace Learning2Program // @description Remove popup from webstagram. // @include *web.stagram.com/* // @run-at document-end // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== if ($('#cboxOverlay').length === 1){ document.getElementById('cboxOverlay').remove(); document.getElementById('colorbox').remove();}