reddit: hide email banner

Stops new reddit from constantly asking for your email address

  1. // ==UserScript==
  2. // @name reddit: hide email banner
  3. // @namespace 94k5v95227tm3x3obar9
  4. // @match https://*.reddit.com/*
  5. // @grant none
  6. // @version 1.0
  7. // @description Stops new reddit from constantly asking for your email address
  8. // @run-at document-start
  9. // @inject-into content
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. "use strict";
  15.  
  16. try {
  17. localStorage.setItem("email-collection-reprompt-store", Number.MAX_SAFE_INTEGER);
  18. localStorage.removeItem("email.verification_prompt");
  19. } catch {}
  20. })();