vote up 6 vote down star

Inspired by this post, I've knocked together a user script to add Stack Overflow tag search to Operator (a microformat plugin for firefox).

Put this code

var stackoverflow = {
  description: "Search Tag on Stack Overflow",
  shortDescription: "Stack Overflow",
  icon: "http://stackoverflow.com/favicon.ico",
  scope: { semantic: {"tag" : "tag"}},
  doAction: function(obj) {return "http://stackoverflow.com/questions/tagged/" + escape(obj.tag);}
};
SemanticActions.add("stackoverflow", stackoverflow);

in a js file, and from the Operator options dialog, add it to the User Scripts section, then add the action in the Actions section and restart Firefox to get it to activate. You'll be able to right click a tags on an external site and search for posts matching that tag here.


75% accept rate

migrated to meta.stackoverflow.com by Bill the Lizard Sep 14 at 18:56