Skip to content

Instantly share code, notes, and snippets.

(function() {
// Allow for vendor prefixes.
window.requestFileSystem = window.requestFileSystem ||
window.webkitRequestFileSystem;
// Create a variable that will store a reference to the FileSystem.
var filesystem = null;
// Get references to the page elements.
// ==UserScript==
// @name Disable New Profiles
// @namespace http://tampermonkey.net/
// @version 0.7.5
// @description Modifies all profile links to bring you to the overview page. Also fixes overflow issue on new profile page.
// @author /u/corylulu
// @match https://www.reddit.com/*
// @grant none
// @require https://code.jquery.com/jquery.min.js
// @require https://raw.githubusercontent.com/uzairfarooq/arrive/master/minified/arrive.min.js
@corylulu
corylulu / DisableNewProfiles.user.js
Last active November 12, 2017 15:29
Disable new Profiles for Reddit
// ==UserScript==
// @name Disable New Profiles
// @namespace http://tampermonkey.net/
// @version 1.1.1
// @description Modifies all profile links to bring you to the overview page by default. Also adds an "Overview" tab to the new Profile page and a "Profile" tab to the overview page.
// @author /u/corylulu
// @match https://www.reddit.com/*
// @grant none
// @require https://raw.githubusercontent.com/uzairfarooq/arrive/master/minified/arrive.min.js
// ==/UserScript==