Nabizim jednoduchy skriptik pro GreaseMonkey, ktery vas varuje, ze je vlakno prilis stare. Motivace je zabranit exhumaci, nebo aspon reakcim na exhumovana vlakna.
// ==UserScript==
// @name Zvyraznovac vlaken starsich nez rok pro poradna.net
// @include https://*.poradna.net/questions/*
// @version 1
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==
$(function () {
highligthOldThread();
});
function highligthOldThread() {
const warningDiv = '<div id="oldWarning" style="border: 1px solid red;"><b>Toto vlákno je příliš staré!<b></div><br/>';
const dateArray = $("time a").first().text().split(".");
const threadDate = new Date().setFullYear(dateArray[2], dateArray[1], dateArray[0]);
const yearBeforeNow = new Date().getTime() - (30 * 24 * 60 * 60 * 1000);
if (threadDate <= yearBeforeNow) {
$("div .body").first().prepend(warningDiv);
$("article.reply").each(function () {
$(this).find("div.body:first").prepend(warningDiv);
});
}
}