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.

link|improve this question
feedback

migrated from stackoverflow.com Sep 14 '09 at 18:56

This question came from our site for professional and enthusiast programmers.

1 Answer

OK, am I being stupid here (never used operator before) I have added the script, added the action to the list, now what happens? I am guessing it should appear in the context menu right? Nothing so far..

Sorry for my n00bism :D

EDIT:

Dont worry, I got it! Nice Job! :D

link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged