Added Reddit-RemovePostBar.js.

master
parent cf815701f1
commit 7ea9e94e8e

@ -27,6 +27,9 @@ Edit the script to point to the executables for each program and create a shortc
**USPS-CollapseTracking.js** **USPS-CollapseTracking.js**
This is a tampermonkey script that collapses the 'see more' portion of the USPS tracking page and scrolls to the top. This is a tampermonkey script that collapses the 'see more' portion of the USPS tracking page and scrolls to the top.
**Reddit-RemovePostBar.js**
This script deletes the new post bar at the top of the reddit page that serves no purpose.
### AppTweaks ### AppTweaks
These items aren't really scripts but they are useful little changes I've made to various programs I use that I wanted to consolidate in to one place. Hopefully the comments explain what they all do well enough. These items aren't really scripts but they are useful little changes I've made to various programs I use that I wanted to consolidate in to one place. Hopefully the comments explain what they all do well enough.

@ -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…
Cancel
Save