scripts/javascript/Reddit-RemovePostBar.js

18 lines
512 B

// ==UserScript==
// @name Delete New Reddit Post Bar
// @namespace http://reddit.com/
// @version 1.0
// @description Deletes the new post field that serves no purpose.
// @author WTMike24
// @match https://www.reddit.com/*
// @icon https://www.google.com/s2/favicons?domain=reddit.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
document.body.getElementsByClassName("_2jJNpBqXMbbyOiGCElTYxZ")[0].remove();
})();