Reddit - Switch to 'Submitted' by default on user profile view

99% of the time I want to view the 'Submitted' tab, and occasionally the 'Comments' tab. Never 'Overview', so this'll always redirect from overview to submitted.

  1. // ==UserScript==
  2. // @name Reddit - Switch to 'Submitted' by default on user profile view
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-08-12
  5. // @description 99% of the time I want to view the 'Submitted' tab, and occasionally the 'Comments' tab. Never 'Overview', so this'll always redirect from overview to submitted.
  6. // @author You
  7. // @match https://*.reddit.com/user/*
  8. // @match https://*.reddit.com/user/*/
  9. // @exclude https://*.reddit.com/user/*/submitted*
  10. // @exclude https://*.reddit.com/user/*/comments*
  11. // @icon https://*.google.com/s2/favicons?sz=64&domain=reddit.com
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. document.location = document.querySelector('.choice[href*="submitted"]').href;
  19. })();