// ==UserScript== // @name @-posting // @description Link to posts in the same 4chan thread with "@". // @version 0.1.0.0 // @namespace atposting // @license WTFPL // @include *://boards.4chan.org/* // @run-at document-end // @downloadURL none // ==/UserScript== (function() { Array.prototype.forEach.call(document.querySelectorAll('.postMessage'), function(x) { x.innerHTML = x.innerHTML.replace(/@([0-9]+)/, '@$1'); }); })