HelloInterview – Expand All Collapsed Sections

Automatically expands all collapsed sections on HelloInterview system design pages, including Material UI accordions and "Show More" buttons, so the full content is visible for reading or printing to PDF.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         HelloInterview – Expand All Collapsed Sections
// @namespace    https://greasyfork.org/users/1548493-aleksa-jankovic
// @version      1.0.0
// @description  Automatically expands all collapsed sections on HelloInterview system design pages, including Material UI accordions and "Show More" buttons, so the full content is visible for reading or printing to PDF.
// @author       AleksaJankovic
// @license      MIT
// @match        https://www.hellointerview.com/learn/*
// @run-at       document-idle
// ==/UserScript==

(function () {
  'use strict';

  /**
   * Expands all Material UI accordion sections that are currently collapsed.
   */
  function expandAccordions() {
    const accordionSummaries = document.querySelectorAll(
      '[class*="MuiAccordionSummary-root"]'
    );

    accordionSummaries.forEach(summary => {
      if (summary.getAttribute('aria-expanded') === 'false') {
        summary.click();
      }
    });
  }

  /**
   * Clicks all visible "Show More" buttons or links.
   */
  function expandShowMoreButtons() {
    const possibleButtons = Array.from(
      document.querySelectorAll('button, a, div')
    );

    possibleButtons
      .filter(element =>
        /show more/i.test(element.textContent.trim())
      )
      .forEach(button => {
        button.click();
      });
  }

  /**
   * Runs all expansion logic.
   * Executed multiple times to account for dynamically loaded content.
   */
  function expandAllContent() {
    expandAccordions();
    expandShowMoreButtons();
  }

  // Initial run after page load
  setTimeout(expandAllContent, 500);

  // Second run to catch dynamically rendered sections
  setTimeout(expandAllContent, 1500);
})();