Skip to content

Instantly share code, notes, and snippets.

@loadletter
Last active August 29, 2015 14:00
Show Gist options
  • Save loadletter/7f0ce5d344f52c52451b to your computer and use it in GitHub Desktop.
Save loadletter/7f0ce5d344f52c52451b to your computer and use it in GitHub Desktop.
Load the Reply form on vanilla 4chan (without any extension)
// ==UserScript==
// @name Autoload the Reply form
// @namespace loadletter
// @description Load the Reply form on vanilla 4chan (without any extension)
// @include http://boards.4chan.org/*
// @include https://boards.4chan.org/*
// @run-at document-end
// @version 1
// @grant none
// ==/UserScript==
frm = document.getElementById("postForm");
frm.style.display = "table";
div = document.getElementById("togglePostFormLink");
div.style.display = "none";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment