Instagram: middle-click to new tab

Allows you to open links in new tabs by middle clicking

  1. // ==UserScript==
  2. // @name Instagram: middle-click to new tab
  3. // @description Allows you to open links in new tabs by middle clicking
  4. // @include *://www.instagram.com/*
  5. // @version 1.01
  6. // @grant none
  7. // @namespace https://greatest.deepsurf.us/users/5802
  8. // ==/UserScript==
  9.  
  10. window.addEventListener('click', function(e){
  11. if(e.button == 1 || (e.button == 0 && e.ctrlKey)){
  12. e.stopPropagation();
  13. }
  14. }, true);