By aeosynth
—
Last update
Mar 31, 2009
—
Installed
101 times.
// ==UserScript==
// @name Insta-click
// @namespace http://userscripts.org/users/64431
// @author Aeosynth
// @description Open links in new tabs with right-mouse clicks
// @version 1.0
// @include *
// ==/UserScript==
Array.forEach(document.getElementsByTagName('a'), function(el){
el.addEventListener('mousedown',
function(e){
if(e.button == 2 && !e.ctrlKey){
GM_openInTab(this.href)
prevent = true
}
},
true)
})
document.addEventListener('contextmenu',
function(e){
if(prevent){
e.stopPropagation()
e.preventDefault()
prevent = false
}
},
true)