Idea: no., Lack of skills to make it possible: yes.
I really like the idea, so I'm also realy interested to hear from anyone who is more custom with creating macros.
I took a look at the request when you first posted it. There's a bookmarklet for opening all in foreground, but haven't found for opening in background. As you know, most bookmarklets can be converted to macros. But, without jscript there's no macro command AFAIK that can detect all links in a page. I only know of $LINKURL which gets the URL of the selected link.
Foreground would be a start I think. At least it is much better than nothing at all. :-)
It would be cool if you could post the code or link(s). Perhaps I'll eventually find the time to look into macros. Maybe there's the possibility to combine already existent code with new stuff. I just hope there'll be a way to get that one done.
Angus Turnbull published an
'Open in Background' Powertoy (5 August 2001)
jscript for IE context menu extension.
-------------- source:
var parentwin = external.menuArguments;
var cwn = parentwin.open('about:blank', '_blank', 'menubar=1,toolbar=1,location=1,scrollbars=1,resizable=1,status=1');
parentwin.focus();
cwn.blur();
cwn.location.href = parentwin.event.srcElement.href;
cwn.blur();
-----------------
The idea is to change the focus of the just opened new window by means of the
js blur() function and re-establish the focus on the originating window.
It works well for one new window at a time, maybe opening multiple windows will confuse the browser.
For use with k-meleon you would have to translate it into javascript.
Thank you very much for your answer, profiler! I will try to solve that one as soon as I find the time (might take some time...), although I don't know much about macros or javascript.