You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
512 B
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();
|
|
})();
|