Prevent links from opening in new windows (Firefox, Greasemonkey) I got tired of having links open in new windows, so I developed this Greasemonkey script. Hope your find it usefull:
----cut here----
// ==UserScript==
// @name Window fixer
// @description Prevent opening of links in new windows, since it better options are now possible.
// @include http://www.stevepavlina.com/*
// @include http://stevepavlina.com/*
// ==/UserScript==
var links;
links = document.getElementsByTagName('a');
for(i=0;i<links.length;i++)
{
links[i].setAttribute('target','');
}
----cut here---- |