Expand Undeadly/OpenBSD Journal Comments

By Dean Wilson Last update Jun 27, 2006 — Installed 178 times.
// ==UserScript==
// @name          Expand Undeadly/OpenBSD Journal Comments
// @namespace     http://www.unixdaemon.net/gmscripts/
// @description   Expand the comments so the full text is visible.
// @include       http://undeadly.org/cgi?action=article*
// @include       http://www.undeadly.org/cgi?action=article*
// ==/UserScript==

(function() {

  if (!(window.location.href.match(/mode=expanded/))) {
    window.location.replace(window.location + "&mode=expanded");
  }
})();