Slashdot Mirror


Slashdot Firefox Extension

christopherfinke writes "I've been working on Slashdotter Firefox extension for Slashdot users, and version 1.2 has been approved by the Mozilla admins. Features include the ability to auto-add cache links after story links (from any of Coral Cache, Google Cache, or Mirrordot), a quick-reply feature that adds a 'Reply' option to the right-click menu when you select text in a comment, the option of styling all of Slashdot's pages like a chosen Slashdot section, links in the comment sections that allow you to toggle open/closed all of a comments replies, and more. All of Slashdotter's features are optional, and the extension is compatible with Firefox, the Mozilla Suite, Seamonkey, and Flock."

61 of 293 comments (clear)

  1. Features by donnyspi · · Score: 5, Funny

    Does the extension automatically remove dupes and fix typos in the titles of submitted stories???

    1. Re:Features by Jugalator · · Score: 5, Informative

      If it parsed the story tag "dupe" (which actually are in DIV's using the CSS class "tags", so they should be identifiable), and could associate these tags with their detailed story (DIV's with CSS class "details"), these DIV's can then be hidden by applying the appropriate collapsing "display:none" style, and if you've got this far, possibly also add a link to expand these collapsed stories if you're still interested.

      --
      Beware: In C++, your friends can see your privates!
    2. Re:Features by Yst · · Score: 4, Funny

      Or, for that matter, would the plugin author consider providing functionality which would systematically add dupes and typos to other sites using Slash, so as to bring them into closer conformity with Slashdot's standards and make them more familiar in appearance and function to a Slashdot-acclimatised audience?

      --
      Karma: Chameleon (comes and goes)
    3. Re:Features by Wannabe+Code+Monkey · · Score: 3, Interesting

      Does the extension automatically remove dupes and fix typos in the titles of submitted stories???

      No, but I just used it to reply to your post, and it works pretty well. In the quick reply section of the preferences, I put this in for my format:

      <p><i>%s</i></p>

      And it works great.

      --
      We always knew Comcast was corrupt, here's the proof: http://tech.slashdot.org/comments.pl?sid=1909890&cid=34545432
    4. Re:Features by mrchaotica · · Score: 4, Informative

      Nah, he's using <i> for good reason -- just to italicize the text to visually differentiate it from the rest of his post, because Slashdot doesn't support doing it with CSS like it ought to. He should only use <em> if it's actually emphasized, which it isn't.

      On the other hand, he really should use <blockquote> instead of <p> because it is a quote, which was what I was going to point out until I saw your post. ; )

      Personally, what I use for quotes (manually, until I install the extension) is <blockquote><i>%s</i></blockquote>.

      (I just hope he notices and reads this post, since I replied to a reply instead of replying to his post directly.)

      --

      "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

  2. At First Glance by Dante+Shamest · · Score: 5, Funny

    I thought this extension allowed me to slashdot sites while I browse. :O)

    Seriously though, I like this feature:


    * You can choose to have all Slashdot pages styled like one of Slashdot's sections. For example, if you're a fan of the Games section's hideous purple and black color scheme, you can have every Slashdot page look just as horrifying!
  3. Opera? by Poromenos1 · · Score: 4, Interesting

    Why doesn't anyone make any Opera js scripts? :(

    --
    Send email from the afterlife! Write your e-will at Dead Man's Switch.
    1. Re:Opera? by appavi · · Score: 5, Informative

      Opera 9 Beta supports greasemonkey scripts. Greasemonkey scripts should work in opera as is or with some minor modifications.

    2. Re:Opera? by mac123 · · Score: 2, Informative

      Err...you mean like these ones? They work fine in both Opera and Greasemonkey

    3. Re:Opera? by pAnkRat · · Score: 4, Informative
      I wrote a bookmarklet, which I personaly use in Galeon, but it should work in all Moz* browsers.
      If you hover over the comment Link (#15013415) it will pull the moderation results for this post with xmlHttp, and display the result table in a DIV tag, beside the current post.
      The bookmark name is "slash mod"
      The URL is:
      (AFAIK this should all be in one single line.)
      javascript:(function(){ var currentUrl =''; function h(event){ var url = 'http://' + this.host + '/comments.pl' + this.search; if(currentUrl == url){ var theDiv = document.getElementById('kwsmodding'); if (theDiv != null) { theDiv.style.display='block'; } } else { var req = new XMLHttpRequest(); req.open("GET", url, false); req.send(""); var resultText = req.responseText; var tableText = '' + resultText.split('data_head">')[1].split('')[0] + ''; var theDiv = document.getElementById('kwsmodding'); if (theDiv == null) { var theDiv = document.createElement('DIV'); var mybody=document.getElementsByTagName('body').item( 0); mybody.appendChild(theDiv); theDiv.style.zIndex=100; theDiv.style.backgroundColor='grey'; theDiv.id='kwsmodding'; theDiv.style.position='absolute'; theDiv.style.backgroundColor='grey'; theDiv.style.display='block'; } theDiv.innerHTML=tableText; theDiv.style.right='30px'; theDiv.style.top=(event.pageY - 20 ) + 'px'; theDiv.style.display='block'; currentUrl = url; } event.preventDefault(); } function hout(event){ var theDiv = document.getElementById('kwsmodding'); if (theDiv != null) { theDiv.style.display='none'; } } var xpe = new XPathEvaluator(); var nsResolver = xpe.createNSResolver(document); var result = xpe.evaluate('//li/div/div/a[contains( @href , "comments" )]', document, nsResolver, 0, null); while (res = result.iterateNext()) { res.addEventListener('mouseover', h, false); res.addEventListener('mouseout', hout, false); } })();
      Once this is added to the bookmarks you can use it in the following way.
      • go to slashdot
      • pick story
      • click "read more"
      • after the page has finished loading, klick the Bookmark
      • mouse hover over a Comment Url (normaly the last part of: " by Poromenos1 (830658) Alter Relationship on 23:26 28 March 2006 (#15013415)" in the Comment header)
      • wait a sec.
      • read result
      • mouseOut the let the table dissapear again.
      The code does some cacheing, if the users hovers/mOuts the same link a few times, the URL request is done only once.
      --
      we need an "-1 Plain wrong" moderation option!
    4. Re:Opera? by Ken_g6 · · Score: 2, Informative
      Hey, just stick a header on there, delete the "javascript:", save that as some_file_name.user.js, and that's a Greasemonkey script!

      Not that it seems to work for me, Greasemonkey or otherwise. Did /. munge some characters?

      Example header:
      // ==UserScript==
      // @name Slashdot View Moderation
      // @namespace http://your-web-site/
      // @description If you hover over the comment Link (#15013415) it will pull the moderation results for this post with xmlHttp, and display the result table in a DIV tag, beside the current post.
      // @include http://slashdot.org/*
      // ==/UserScript==
      --
      (T>t && O(n)--) == sqrt(666)
  4. Re:trolly troll troll by Anonymous Coward · · Score: 5, Funny

    I think you'll find that the grammatically correct version would have been "All your Slashdotter feature are belong to optional". HTH

  5. What about IE? by aw232 · · Score: 5, Funny

    Aren't you going to make one for IE? How about IE7?

  6. Re:Awesome by christopherfinke · · Score: 5, Informative
    Looks like the select-text replies aren't AJAX, but it turns the reply to this link into an AJAX-enabled thingy.
    The AJAX replies feature isn't for replying to comments, it's for those links that say "X Replies below your threshold." It makes it so you don't have to load a new page to see those replies.
    Now we just have to wait for the VCs to come along and dump millions on the poor guy for using the word AJAX.
    Woohoo!
  7. Re:What about IE? by WebHostingGuy · · Score: 2, Funny

    It will be available as soon as Vista ships . . . around 2Q 2010.

    --
    Quality Hosting e3 Servers
  8. Yay!.. Taco did you see that? by CptnHarlock · · Score: 5, Interesting
    I've been hoping for Taco to include the "colapse thread" feature for a long time. I still think it should be native instead as in the form of a plugin - then everyone could (and probably would) use it.

    It would make it a lot easier to find the next real comment after a comment tree created by some Troll post... Another positive thing is that we'd get rid of the "high positioning" replies that normaly end up in the first tree. Are you listening Taco?.. :)

    Cheers!..

    --
    $HOME is where the .*shrc is
    -- silver_p
    1. Re:Yay!.. Taco did you see that? by jambarama · · Score: 3, Informative

      There are greasemonkey scripts to allow collapsing threads. And scripts to collapse stories and remove sidebars and figure out how much time you waste on /. and add mirrors and whatever else you want on slashdot.

      I'd give them a look before I demanded the slashcode writers add features you want (or write the code yourself and submit it to slashcode), unlike other news sites this is an OSS project.

  9. It's really quite nice by A+Dafa+Disciple · · Score: 4, Informative

    This was the first I had heard about this exstension. I've been using it for the last half hour or so and I'm very pleased. It really does make browsing /. here a more enjoyable experience.

    I find some of the additions of the extension to be things that really should have be built into /. anyways, such as things that you find at Digg like AJAX comment retrieval - things that are not at all hard to implement that can dramatically increase the user experience. Nevertheless, I'm not really too surprised by /.'s apparent slowness in embracing new web technologies considering how long it took them to simply make this site fully standardized in CSS

    One negative aspect of the extension, however, is that it seems to me that, depending on the feature set you have enabled, /. pages in general now take a bit longer to load, but not so long that it makes the plug-in not worthwhile, especially since it facilitates the speed of navigation in other ways.

    All of you should check this out for sure!

  10. Feature Request by OnlineAlias · · Score: 4, Funny

    I for one would welcome an insert "imagine a beowolf cluster" or "welcome our evil overlords" or "netcraft confirms" or "all your base are" or "in soviet russia" button. That would be great.

  11. Re:Wow by christopherfinke · · Score: 5, Funny
    This dude needs a job!
    I've got a job. What I need is a life.
  12. Re:trolly troll troll by amliebsch · · Score: 4, Informative
    The features belong to "Slashdotter," the name of the extension given in TFS.

    LEARN TO READ! HTH HAND.

    --
    If you don't know where you are going, you will wind up somewhere else.
  13. Does it have First Post button? by chia_monkey · · Score: 4, Funny

    Does it have a First Post button? Imagine the millions of man-hours per day saved by people hitting that button rather than typing all that manually.

    --

    "He uses statistics as a drunken man uses lampposts...for support rather than illumination." - Andrew Lang
  14. Re:trolly troll troll by Potor · · Score: 3, Informative
    I'm pretty sure that's right, so the sentece should be "All of Slashdot's features" if the features belong to the site, or "All of a Slashdotter's features", if the features belong to the individual who uses the site
    Nope. The software is called Slashdotter, and all of its (i.e., Slashdotter's) functions are optional. BTW: I used it to respond to this post. It works brilliantly! Thanks, dude.
  15. Re:FP! by christopherfinke · · Score: 2, Interesting
    FP using Slashdotter-Firefox Extension's "Reply to Selected Text" option.
    Nope; this was.
  16. Thank You by Spad · · Score: 2, Interesting

    All of Slashdotter's features are optional, and the extension is compatible with Firefox, the Mozilla Suite, Seamonkey, and Flock.

    As a Seamonkey user, I'm really sick of Firefox extensions that refuse to work because the author couldn't be bothered to check them properly, so thank you for taking the time.

  17. Re:Aw nuts by christopherfinke · · Score: 4, Informative
    But now I can't see tags anymore, even though I unchecked "hide tags"
    Whoops. That'll be fixed as soon as 1.2.1 is approved by a Mozilla admin; in the meantime, if you like Slashdotter and want to show tagging, you can download the new version from my site.
  18. Re:Wow by christopherfinke · · Score: 4, Funny
    Hmm...is there a feature you can click that turns up the 'intelligence' of the posts your read?
    Apparently not.
  19. Re:Wow by AKAImBatman · · Score: 4, Insightful

    What I need is a life.

    What you need is kids. They'll take care of your free time for you, dontcha worry 'bout that. ;-)

  20. Re:Firewall this... by christopherfinke · · Score: 3, Informative
    I'm blocked by Websense from downloading this extension
    If my site (efinke.com) isn't blocked, you can download the extension from there.
  21. Re:Awesome by SigILL · · Score: 2, Funny
    I think that his problem is in a limitation Slashdot has. You cannot foe yourelf.
    No problem; I know how to fix that. Just give me your password, and I'll do it for you.
    --
    Error: password can't contain reverse spelling of ancient Chinese emperor
  22. Re:awesome by Red+Alastor · · Score: 2, Informative
    That sounds pretty cool, I will go and download it right now, hmmm with all the extensions I am running my firefox is becoming bloatware :op time to remove a few I think.
    What I like about it is that its function don't appear when you aren't on Slashdot so it doesn't add to your clutter.
    --
    Slashdot anagrams to "Sad Sloth"
  23. Re:Legitimate story? by thrillseeker · · Score: 5, Funny
    Seems hazy if an author should be allowed to submit a story to /. about his own project.

    Yeah, we wouldn't want anyone knowledgeable about a subject starting threads.

  24. I have a better idea. by Spy+der+Mann · · Score: 2, Funny
    Imagine the millions of man-hours per day saved by people hitting that button rather than typing all that manually.


    Funny, it reminds me of an idea I had thought about previously. Why not have a "first post this comment" while you're typing, so that it will encode the string inside your comment with steganography?
  25. Re:Wow by Kalak · · Score: 2

    To get kids usually requires a life first - all the better to crush your free time on the rocks of parenthood.

    --
    I am, and always will be, an idiot. Karma: Coma (mostly effected by .hack)
  26. Re:Reply to text option by rholliday · · Score: 4, Informative

    any chance we could customise the reply to selected text option?

    You can. It's in the Extension options.
    --
    Xbox reviews.. We think they're funny.
  27. Re:Missing one... by appavi · · Score: 5, Informative

    Camino doesnt support extensions.

    From Camino FAQ

    Q. Does Camino support Firefox extensions?
    A. No, and it never will. Firefox extensions rely on XUL (a user interface toolkit made by the Mozilla Foundation) to interact with the user and draw their interface. Camino uses Cocoa (an interface toolkit made by Apple) and does not support XUL.

    Also from the interview with Camino Project lead Mike Pinkerton

    We recognize this is a problem for our users, but extensions only exist because of the cross-platform UI layer upon which Firefox is built. It's that same cross-platform UI layer that makes Firefox feel "wrong" on Mac OS X. Camino's use of Cocoa for the user interface makes it fit in with the rest of the platform, but prohibits us from using extensions. We feel this is a trade-off worth making. That said, we are investigating ways to allow non-user-interface extensions to register and work correctly.

  28. Re:Mmm OK... where's preferences page? by christopherfinke · · Score: 2, Informative
    I can't find preferences for slashdotter on SeaMonkey
    There isn't one, although you can access the preferences under about:config. They all start with extensions.slashdotter.
  29. Re:What about IE? by christopherfinke · · Score: 2, Informative
    But where do I configure the extension, like to turn on/off various features like you can do it firefox?
    The options dialog for the Slashdotter uses some XUL tags that weren't supported until Firefox 1.5, and not supported at all in Mozilla or Seamonkey. This isn't necessarily a problem, since you can't get to the options dialog in those browsers anyway.

    If you want to change the options for Slashdotter without the dialog, call up the page about:config. Slashdotter's options all start with extensions.slashdotter. The boolean ones are pretty straight-forward, and the stylesheet one is the subdomain of the section that you want to style Slashdot as (e.g. apple, it, games, etc.) or blank to disable it.
  30. Greasemonkey Script can make it pretty... by GeekLife.com · · Score: 2, Informative
    I altered someone's greasemonkey script a bit. It unitalicizes all the article text, changes all the fonts to sans-serif, makes the page fixed-width to help with unending, unreadable length lines of text, and fiddles with a few font sizes for better readability.
    // ==UserScript==
    // @name Slashdot: italics swap, topic skin
    // @namespace
    // @description
    // @include http://slashdot.org/*
    // @include http://.slashdot.org/*
    // ==/UserScript==
     
    function addGlobalStyle(css) {
        var head, style;
        head = document.getElementsByTagName('head')[0];
        if (!head) { return; }
        style = document.createElement('style');
        style.type = 'text/css';
        style.innerHTML = css;
        head.appendChild(style);
    }
     
    addGlobalStyle(
     
        ".intro { border: solid thin #FFFFFF;padding: 10px; background-color: #FFFFFF; color: #555555; font-style: italic; line-height: 155%; font-size:13.5px; }" +
    ".intro a { color: #338833; text-decoration: none; }" +
    ".intro a:hover { text-decoration: underline; }" +
    ".intro i { color: #000000; font-style: normal; }" +
    ".topic img { position: relative; top: -25px; }" +
    ".storylinks { font-size:11px;}" +
    ".details { font-size:11px;}" +
    "#frame { font-family:sans-serif;width:960px;margin:15px auto; }"
     
    );
  31. Re:Does it fix the "slow down cowboy!" bug in slas by geekoid · · Score: 2, Insightful

    An intentionally implemented feature is not a bug.

    I could pander until my karma was high, and then bombard slashdot with posts. Could have hundreds before my karma was lowerd.

    In the 'olden' days when they first implemented karma and it was apoint system, I aklways felt your karma should be subtracted from the number of seconds you are forced to wait.

    It is still a wait, but not as bad. Before subscription, I also thought it would be neet if people with a karma over 40 got to see the next story first.

    --
    The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
  32. Re:FP! by SydShamino · · Score: 2, Interesting

    Any chance that we could, as an option, replace this with "Reply to Selected Text in a New Tab"?

    I prefer to have my existing tab unchanged when creating replies, so I can browse back and forth through my whole browsing history while crafting my reply.

    --
    It doesn't hurt to be nice.
  33. Cracker's wet dream by DragonHawk · · Score: 2, Insightful

    Since we're trolling...

    I can just imagine the legions of Slashdotters (the people) installing Slashdotter (the program) as we speak (type). I know I plan to.

    So, imagine if the author of this program slipped in a Trojan Horse back door or some such. Or, waited a bit, and added it to a future release. Suddenly, he'd have some level of access to the browser of hundreds or more Slashdotters!

    How many people here reviewed the source code to this thing before they installed it? I know I didn't.

    Food for thought.

    --

    dragonhawk@iname.microsoft.com
    I do not like Microsoft. Remove them from my email address.
  34. also missing... by SlowMovingTarget · · Score: 3, Funny

    Later versions will include a feature that automatically votes for the "Cowboy Neal" option in Slashdot polls.

  35. Thank God... by identity0 · · Score: 5, Informative

    Slashdot's comments section has such a broken UI, I was actually thinking the other day to write a program to help me navigate it. Props to you for making that unnessisary.

    I have some ideas about what is broken on Slashdot. Some of them would require actual site modifications to fix, other could be fixed with a browser extention.

    If you want more bugs, how about:

      - When I'm in the post writing screen, there is no text of the story or link to it, so I have to open Slashdot in another tab and go to the story to read it.

      - The comments index is very, very broken. The "threshholds" concept's three drop-down menus (-1:5), (Threaded/Nested/Flat/No comments), (Oldest 1st/Newest 1st/Highest 1st/Oldest 1st Ignore threads/Newest 1st Ignore threads), and the "Comments spill at 50" concept interact in bizzare ways such that I don't even know what it's *trying* to do.

      - I *hate* the fact that comments below your viewing threshhold are listed at the bottom of the thread level instead of between the posts that it was replying to and got a reply from. So you sometimes see people seemingly reply to themselves, or flaming others, but they are actually replying to something below your viewing threshhold. I've seen arguments start this way, because someone thinks a flame was directed at them instead of to the AC that replied to them earlier. Please. for the love of god, put in an indicator if there is a post below the threshhold that a post is replying to.

      - I would like to be able to view the whole comments section as a threaded, subject-only(that is, no expanded posts) view, and open up individual posts which will open up in a nested, all-open veiw. Perhaps allow right-clicks on post titles should allow you to open up the comment and its follow-ups with any pre-specified threshhold options?

      - Instead of three drop-down menus in the comment index, how about a list of rules which we can rearrange the order of to make settings? Might require AJAX.

      - Slashdot's user prefs allow me to "bias" the moderation towards funny, or informative, or other moderation types, but it is a PITA to change it for each story. Some stories I want to read in "funny" mode, others I want to read in "Informative" mode. I should be able to change the bias to one of several presets like on an Winamp equalizer on a per-story basis.

    1. Re:Thank God... by jamie · · Score: 3, Interesting
      Not all of it, but we are working on a lot of this (in fact it's a little scary how close some of your ideas are to ours :)

      Stay tuned...

  36. Re:Legitimate story? by timmyf2371 · · Score: 2, Insightful
    Better that the author submits the story as this guy did rather than submit it under a pseudonym praising "some other guy's" extension.

    I think it deserves to make front page as it did anyway; for people who aren't interested, fair enough - it's just another story you aren't interested in. For people like myself and many others who had never heard of this extension, it's great that we've now been informed.

    --

    Backup not found: (A)bort (R)etry (P)anic
  37. The times they.... by fm6 · · Score: 4, Interesting
    You're right about needing to be able to skip a comment tree. You don't even need a fancy collapse feature — just a link that means, "go to the next comment at this level". I often don't bother to look at popular stories because I know I'll never have the patience to find my way past all the trolling, irrelevent jokes, and shoot-from-the-lip flame wars that the initial posters always indulge in.

    This wasn't such a big deal when I started following Slashdot 5 years ago. But there are a lot more users now. It's really pathetic when any popular site is unable to evolve with the times — but when it's Slashdot, you want to cry.

    1. Re:The times they.... by Nimey · · Score: 5, Funny

      I set any comment modded "funny" at -6 in my preferences. That cut down on a lot of the garbage.

      I see a great need: a Bayesian function on this extension to automagically "mod" comments; e.g. anything with the word "Micro$oft" or "M$" modded at -4, free ipod spam at -6, and so on.

      --
      Hail Eris, full of mischief...

      E pluribus sanguinem
    2. Re:The times they.... by Sentry21 · · Score: 2, Insightful

      That's why you browse at Score: 3. There are a lot less crappy posts, no trolls, and just plain less to read. Ever since I started browsing at threshold 3, Slashdot has been a lot more managable. I don't understand why people complain about things like this when the solution has been here for years. Try it, you'll like it.

    3. Re:The times they.... by zerocool^ · · Score: 2, Informative


      This issue isn't complicated to solve. When you leave your comments Threaded, slashcode displays some random crap comments for no other reason. Try this: set your comments to "Nested" and "Oldest First", and set your threshold to "+3". It's slashdot nirvana.

      For whatever reason, Nested does what you'd think it should do. Top level posts are all the way on the left of the screen; direct replies are underneath. Setting your threshold to +3 has the following benifit: Before the karma counter ran on the Bill and Ted system, it was a simple number between whatever and 50 (I don't remember if it went below zero, but I think it did). If your karma was 25 or more, you got a karma bonus to your posts, i.e. posts you made were at +2 starting, rather than +1. Unfortunately, this is still in effect, and almost everyone has enough karma to post at +2, or at least enough people that there's lots of noise in with the signal. So, by narrowing your comment display to +3, you only see comments that *someone* has modded up.

      So, that's "only comments that have been modded up" coupled with "a proper nesting system" and "not random crap". And if you want to see the rest of the comments, just click the "X replies beneath your current threshold" link to display them. Try it; you'll never go back.

      ~Will

      --
      sig?
  38. Re:FP! by christopherfinke · · Score: 2
    Any chance that we could, as an option, replace this with "Reply to Selected Text in a New Tab"?
    Sure thing. Look for it in version 1.3.
  39. Re:Wow by Foofoobar · · Score: 3, Funny

    That would be to imply that there are women being bred in a secret government laboratory to be specifically aroused by Dungeons and Dragons, comic books and your ability to compile the kernel.

    Um... anyone know if this lab is looking for QA?

    --
    This is my sig. There are many like it but this one is mine.
  40. Re:*Gasp* by christopherfinke · · Score: 4, Informative
    No Bon Echo support? :(
    I just downloaded Bon Echo and tested Slashdotter; it works, and I've uploaded a compatible version (1.2.2) to the Mozilla Addons site. It should be approved anytime within 1 day to 3 weeks (based on past experiences). In the meantime, it's available here.
  41. Re:Mmm OK... where's preferences page? by Atzanteol · · Score: 2, Informative
    There isn't one, although you can access the preferences under about:config. They all start with extensions.slashdotter.

    Or you can go to "tools->Extensions" and then double-click on the slashdotter plugin. It brings up a nice dialog box to configure slashdotter.

    --
    "Ignorance more frequently begets confidence than does knowledge"

    - Charles Darwin
  42. My own personal wishlist feature by DragonHawk · · Score: 2

    Wow. Cool. Now *that's* service.

    As long as you're taking requests.... ;-)

    I usually browse with comments with a medium-high threshold. When I find a thread that looks interesting, I middle-click the comment ID (the "#12345" link after the time in the header) of the top post of said thread to open it in a new tab. Then I change that thread to a -1 threshhold, Nested, and redisplay, to see the whole thing.

    It would be really nice (for me) to have that available in an automated way. Maybe on the menu when right-clicking the comment ID or something.

    I would understand if this is considered too esoteric a feature. Maybe it could be generalized somehow.

    Either way, thanks for the cool tool!

    --

    dragonhawk@iname.microsoft.com
    I do not like Microsoft. Remove them from my email address.
  43. Re:awesome by docdoc · · Score: 2, Funny

    Please explain what you mean by "when you aren't on Slashdot"...

  44. Re:Tinfoil hats on! by Myen · · Score: 2, Informative

    It's not actually Mozilla admins - it's addons.mozilla.org reviewers.

    There is no barrier to entry in becoming a reviewer. You are only expected to install the extension, use it for a bit to make sure it does what it claims and doesn't break, and approve. (Disapprove, of course, if it doesn't work.)

    There is no code review involved. The reviewers are not even really expected understand code. Being approved on there doesn't really signify a sign of quality. Heck, if you want to you can end up reviewing your own.

  45. Re:On Writing (and a suggestion for the extension) by underspecified · · Score: 2, Informative
    I don't see the grammatical error in the bolded text. There is a comma splice [wikipedia.org], though. Remember: if the two phrases sound good alone, use a period or a semicolon!
    There's no comma splice here. The final two sentences are joined by the conjuction 'and' plus a comma. The author does show a propensity for using serial commas [wikipedia.org], though most authorities will agree that this is correct usage, if not more logical. ^_^
    --
    --underspecified
  46. It's good by ejd3 · · Score: 2, Informative

    I actually started using this a few days before this story broke. I like being able to customize which theme is used by default. (I use the linux one because I think black just looks better than teal.) I used to use some Greasemonkey scripts to enable just about the same functionality that this extension does but the thing that I think is really missing from Greasemonkey is an auto script updater. One has been made http://userscripts.org/scripts/show/2296 but I'm sure that this works with very few scripts as of now.

  47. Re:awesome by ProfFalcon · · Score: 2, Funny
    Please explain what you mean by "when you aren't on Slashdot"...
    I think he means when you're surfing porn instead of Slashdot.
    --
    Simply stating [Citation Needed] does not automatically make you insightful or brilliant.
  48. Tagging is by users by SeanDuggan · · Score: 2, Informative

    Actually, I'd be worried if dupes were tagged as such when they're put up; if the editor realizes it's a dupe, why's it up in the first place?
    Users add the tags, not the editors.

    --
    This sig has absolutely no significance and serves only to take up screen space and waste the time of the reader.