parent
cf815701f1
commit
7ea9e94e8e
@ -0,0 +1,17 @@
|
||||
// ==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();
|
||||
})();
|
Loading…
Reference in new issue