// ==UserScript== // @name Random Post // @namespace stackoverflow // @description Add timeline links to every questions // @include http://physics.stackexchange.com/* // @version 0.1 // ==/UserScript== (function(){ var start=function(){ $("#hlinks-custom").each(function(){ rlink = $("|"); $(this).append(rlink); return false; }); }; if(window.$){ start(); }else{ var script = document.createElement("script"); script.type = "text/javascript"; script.textContent = "(" + start + ")();"; document.body.appendChild(script); } })();