// ==UserScript== // @name flickr last 24 hours interesting // @description adds "last 24 hours interesting" link to flickr Explore candy button // @namespace http://www.rhyley.org/gm/ // @include http://flickr.com/* // @include http://www.flickr.com/* // @include http://www-us.flickr.com/* // ==/UserScript== (function() { int7d = document.evaluate("//a[contains(@href,'7days')]",document.getElementById('candy_nav_button_explore'),null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0); var d = new Date(); var a = d.getFullYear(); var b = d.getMonth() + 1; var c = d.getDate(); var int24h = document.createElement('a'); int24h.setAttribute('title',"Last 24 Hours Interesting"); int24h.setAttribute('href','/explore/interesting/' + a +'/'+ b +'/'+ c +'/'); int24h.innerHTML = "Last 24 Hours Interesting"; int7d.parentNode.insertBefore(int24h, int7d.nextSibling); })();