Imgur Auto Redirect Homepage To Upload Page

Automatically redirects you from the Imgur homepage to the upload page

  1. // ==UserScript==
  2. // @name Imgur Auto Redirect Homepage To Upload Page
  3. // @namespace https://greasyfork.org/en/users/241453-happysmacky3453
  4. // @description Automatically redirects you from the Imgur homepage to the upload page
  5. // @match https://imgur.com/
  6. // @version 1.00
  7. // @run-at document-start
  8. // @author HappySmacky3453
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. window.location.replace("https://imgur.com/upload" + window.location.pathname);