// ==UserScript== // @name Flickr Interestingness Navigation Enhancer // @description Adds previous/next date links to the bottom of interestingness pages. // @namespace http://www.rhyley.org/gm/ // @include http://www.flickr.com/explore/interesting/* // @include http://flickr.com/explore/interesting/* // By Jason Rhyley (www.rhyley.org) // Feel free to contact me if you have suggestions or questions. // I reserve the right to make fun of your grammar if you do. // ==/UserScript== (function() { InterestingNavi = document.evaluate( "//table[@class='InterestingNavi']", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null).snapshotItem(0); paginator = document.evaluate( "//div[@class='paginator']", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null).snapshotItem(0); a = document.createElement('table'); a.setAttribute('class','InterestingNavi'); a.innerHTML = InterestingNavi.innerHTML; paginator.parentNode.insertBefore(a, paginator.nextSibling); })();