InstaKiller

Bypass the 'required' log in for instagram.

  1. // ==UserScript==
  2. // @name InstaKiller
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.1
  5. // @description Bypass the 'required' log in for instagram.
  6. // @author @feedmegrizzly
  7. // @match https://www.instagram.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11.  
  12. // When browsing Instagram has got you down and won't let you keep scrolling. You don't want to have to log in!!!
  13. // What the hell are they thinking? With this script, you don't need to worry about anything. Its all taken care of...
  14.  
  15. window.addEventListener('scroll', ()=> {
  16. document.body.style.overflow = "scroll"
  17. document.getElementsByClassName('RnEpo Yx5HN ')[0].remove();
  18. })
  19.