Remove Trending Today from Reddit Search

Removes Trending Today from Reddit Search

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Remove Trending Today from Reddit Search
// @namespace    https://github.com/ThsUsr
// @version      1.1
// @description  Removes Trending Today from Reddit Search
// @author       ThsUsr
// @match        https://www.reddit.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @homepageURL  https://github.com/ThsUsr/remove-trending-today-from-reddit-search
// @supportURL   https://github.com/tadwohlrapp/google-image-search-show-image-dimensions-userscript/issues
// @license      MIT
// ==/UserScript==


/**
 * Returns the first element matching the given selector within the trending
 * elements.
 *
 * @param {string} selector - The CSS selector to match against.
 * @return {Element|null} The first matching element, or null if none match.
 */
function getTrendingElement(selector) {
  return document.querySelector('search-dynamic-id-cache-controller').shadowRoot.lastElementChild.assignedElements(
  )[0].shadowRoot.querySelector(selector);
}


/**
 * Removes certain elements from the trending area.
 *
 * This function does not return anything.
 */
function removeTrendingElements() {
  const elementsToRemove = [
    '.ml-md.mt-sm.mb-2xs.text-neutral-content-weak.flex.items-center',
    '#reddit-trending-searches-partial-container',
  ];

  elementsToRemove.forEach((selector) => {
    const element = getTrendingElement(selector);
    if (element) {
      element.remove();
    }
  });
}


/**
 * Starts a periodic cleanup of the trending area, removing elements based
 * on the given interval.
 *
 * @param {number} interval - The interval in milliseconds.
 */
function startPeriodicCleanup(interval) {
  setInterval(removeTrendingElements, interval);
}

startPeriodicCleanup(1000);