// ==UserScript==
// @name		Flickr API Titlr
// @description	Gives the Flickr API pages nicer titles
// @include		http://www.flickr.com/services/api/*.html
// @include		http://flickr.com/services/api/*.html
// ==/UserScript==

// By Ben Karel

(function() {
    var methodName = document.documentURI.match( /api\/flickr\.(.*?)\.html$/i );
    if(methodName) document.title = methodName[1];
})();