WebStagram Popup Remover

Removes popups from webstagram.

  1. // ==UserScript==
  2. // @name WebStagram Popup Remover
  3. // @version 1.1
  4. // @namespace Learning2Program
  5. // @author Learning2Program
  6. // @homepage https://greatest.deepsurf.us/scripts/3446-webstagram-popup-remover
  7. // @description Removes popups from webstagram.
  8. // @include *web.stagram.com/*
  9. // @include *websta.me/*
  10. // @run-at document-end
  11. // @require http://code.jquery.com/jquery-latest.js
  12. // ==/UserScript==
  13.  
  14. if ($('#cboxOverlay').length === 1){
  15. document.getElementById('cboxOverlay').remove();
  16. document.getElementById('colorbox').remove();}