Recent posts by Mithrandir
|
Aug 16, 2008
|
Topic: Ideas and script requests / how to remove <meta bla bla bla > tag ?? Hi, try Meta Refresh Blocker. |
|
Mar 11, 2008
|
Topic: Userscripts.org discussion / Feature Request: Edit Comments Also I agree editing comments is cool and I'll do this soon.I can't see, how i could change my comments (even on my "own" scripts). Or is this feature still not available? |
|
Feb 22, 2008
|
Topic: Ideas and script requests / Request: Open all threads with new posts in tabs(vBulletin) Nice work! Thank you. Here's another suggestion. Please insert a var "oMode" in configuration:
var oMode = true; // =true: show first unread post, =false: show first post/beginning of thread and change this section:
for (var i=0; i < lnks.length; i++) {
if (/showthread.php\?goto=newpost/.test(lnks[i].href)) {
if (oMode) {
newposts.push(lnks[i].href);
} else {
newposts.push(lnks[i].href.replace(/goto=newpost&/, ""));
}
f++
if (f+1 > maxlnks && maxlnks > 0) break;
}
}
I hope this is my last idea. ;) |
|
Feb 21, 2008
|
Topic: Ideas and script requests / Request: Open all threads with new posts in tabs(vBulletin) @Seph_VIII:
Have a look at http://www.ardiman.de/assets/files/firefox/vbne... (button's caption is german, sorry) @gollum: Feel free to copy the code and update your script (if you want to). |
