Sleazy Fork is available in English.

Reimu Unhide

Unhide hidden content

Pada tanggal 08 Maret 2016. Lihat %(latest_version_link).

// ==UserScript==
// @name        Reimu Unhide
// @namespace   https://blog.reimu.net
// @description Unhide hidden content
// @include     https://blog.reimu.net/archives/*
// @version     1
// @run-at       document-end
// @grant        none
// ==/UserScript==

(function () {
    var pre = document.getElementsByTagName('pre')[0]; 
    pre.style.display = 'block';
  })();