Recent posts by Mithrandir

Subscribe to Recent posts by Mithrandir 4 posts found

Aug 16, 2008
Mithrandir 4 posts

Topic: Ideas and script requests / how to remove <meta bla bla bla > tag ??

Hi,

try Meta Refresh Blocker.

 
Mar 11, 2008
Mithrandir 4 posts

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
Mithrandir 4 posts

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
Mithrandir 4 posts

Topic: Ideas and script requests / Request: Open all threads with new posts in tabs(vBulletin)

@Seph_VIII:
Reading status is managed by cookies - the script is too fast and so the threads status won't be changed. With some help by Dr. Evil (user in german firefox-forum) i changed gollum's great script, so
- the button works with timeout (that'll nearly solve the ugly cookie problem)
- you can choose, when the button should be shown
- you can set the number of opened threads

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).