Greasy Fork is available in English.
Link to posts in the same 4chan thread with "@".
当前为
// ==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
// ==/UserScript==
(function() {
Array.prototype.forEach.call(document.querySelectorAll('.postMessage'), function(x) {
x.innerHTML = x.innerHTML.replace(/@([0-9]+)/, '<a href="#p$1" class="quotelink">@$1</a>');
});
})