Remove recent subreddits section

Clears recent subreddits section

目前为 2024-07-28 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Remove recent subreddits section
  3. // @namespace http://tampermonkey.net/
  4. // @description Clears recent subreddits section
  5. // @license MIT
  6. // @version 2024-07-28
  7. // @match *://*.reddit.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. setInterval(() => {
  14. if (window.location.hostname.endsWith('reddit.com')) {
  15. localStorage.removeItem('recent-subreddits-store');
  16. }
  17. }, 1000);
  18. })();