Instagram: middle-click to new tab

Allows you to open links in new tabs by middle clicking

目前为 2016-01-10 提交的版本。查看 最新版本

// ==UserScript==
// @name        	Instagram: middle-click to new tab 
// @description  	Allows you to open links in new tabs by middle clicking
// @include     	*://www.instagram.com/*
// @version     	1.01
// @grant       	none
// @namespace https://gf.qytechs.cn/users/5802
// ==/UserScript==

window.addEventListener('click', function(e){
	if(e.button == 1 || (e.button == 0 && e.ctrlKey)){
		e.stopPropagation();
	}
}, true);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址