Last active
August 29, 2015 14:00
-
-
Save loadletter/7f0ce5d344f52c52451b to your computer and use it in GitHub Desktop.
Load the Reply form on vanilla 4chan (without any extension)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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