I liked this feature request, so I figured I'd build a greasemonkey version...
Once installed, all tag links across the site, no matter what page they're on, will display a drop down menu if you hover over them (click functions as it always did and the hover only triggers after a half second delay so it doesn't annoyingly popup everywhere unless you make the deliberate choice to). The menu contains two links for adding/removing to interesting/ignored tag lists.
Enjoy.

The code:
(function() {
function GM_wait() {
if (typeof unsafeWindow.jQuery == 'undefined') {
window.setTimeout(GM_wait,100);
} else {
$ = unsafeWindow.jQuery; letsJQuery();
}
}
GM_wait();
function letsJQuery() {
$(function() {
var timeout;
var overMenu = false;
$(".post-tag").unbind("mouseenter").mouseenter(function() {
var link = $(this).attr("title", "");
timeout = setTimeout(function() {
$("#tagMenu").remove();
var menu = $("<div id='tagMenu'/>").hide().css({
position: "absolute",
left: link.offset().left + "px",
top: (link.offset().top + link.outerHeight()) + "px",
backgroundColor: $("#topbar").css("background-color"),
border: "solid 1px " + link.css("border-bottom-color"),
textAlign: "left",
padding: "0 10px"
}).appendTo("body").hover(function() {
overMenu = true;
},function() {
overMenu = false;
$("#tagMenu").remove();
});
var linkCss = { display: "block", padding: "5px 0" };
var tagName = link.text();
var interesting = $("<a>Loading Interesting Tags...</a>").css(linkCss).appendTo(menu);
var ignored = $("<a>Loading Ignored Tags...</a>").css(linkCss).appendTo(menu);
getTags(function() {
if ($("#interestingTags").text().indexOf(tagName) > -1) {
interesting.html("Remove <b>" + tagName + "</b> from Interesting Tags")
.click(function() { $("#interestingTags .post-tag:contains('" + tagName + "') + span.delete-tag").click(); menu.remove() });
} else {
interesting.html("Add <b>" + tagName + "</b> to Interesting Tags")
.click(function() { $("#interestingTag").val(tagName); $("#interestingAdd").click(); menu.remove(); });
}
if ($("#ignoredTags").text().indexOf(tagName) > -1) {
ignored.html("Remove <b>" + tagName + "</b> from Ignored Tags")
.click(function() { $("#ignoredTags .post-tag:contains('" + tagName + "') + span.delete-tag").click(); menu.remove(); });
} else {
ignored.html("Add <b>" + tagName + "</b> to Ignored Tags")
.click(function() { $("#ignoredTag").val(tagName); $("#ignoredAdd").click(); menu.remove(); });
}
});
function getTags(andThen) {
if ($("#interesting-tags").length > 0) {
andThen();
} else {
$("<div/>").hide().appendTo("body")
.load($("#hlinks-user > a:eq(1)").attr("href") + "?tab=preferences #interesting-tags",
function() {
unsafeWindow.preffkey = $("#fkey").val();
try { unsafeWindow.initTagPrefs(); } catch(e) {}
andThen();
});
}
}
menu.slideDown("fast");
}, 500);
return false;
});
$(".post-tag").unbind("mouseleave").mouseleave(function() {
clearTimeout(timeout);
setTimeout(function() {
if (!overMenu) {
$("#tagMenu").remove();
}
}, 100);
});
});
}
})();
Code should work across all sites (tested on http://stackoverflow.com/* and http://meta.stackoverflow.com/*).