// ==UserScript== // @name flickrAddTags // @namespace http://eschew.org/projects/greasemonkey/flickrAddTags // @description Automatically opens the "edit tags" widget when viewing your own photos // @include http://www.flickr.com/photos/brk/*/ // @include http://flickr.com/photos/brk/*/ // ==/UserScript== // // By Ben Karel (function() { try { tagrs_showForm(); // maybe the function's been renamed? _ge('addtagbox').blur(); // maybe the textbox has a different ID now? } catch(e) {} // either way, bail silently -- not much to do 'bout it. })();