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.

Na nainštalovanie skriptu si budete musieť nainštalovať rozšírenie, ako napríklad Tampermonkey, Greasemonkey alebo Violentmonkey.

Na inštaláciu tohto skriptu je potrebné nainštalovať rozšírenie, ako napríklad Tampermonkey.

Na nainštalovanie skriptu si budete musieť nainštalovať rozšírenie, ako napríklad Tampermonkey, % alebo Violentmonkey.

Na nainštalovanie skriptu si budete musieť nainštalovať rozšírenie, ako napríklad Tampermonkey alebo Userscripts.

Na inštaláciu tohto skriptu je potrebné nainštalovať rozšírenie, ako napríklad Tampermonkey.

Na inštaláciu tohto skriptu je potrebné nainštalovať rozšírenie správcu používateľských skriptov.

(Už mám správcu používateľských skriptov, nechajte ma ho nainštalovať!)

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie, ako napríklad Stylus.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie, ako napríklad Stylus.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie, ako napríklad Stylus.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie správcu používateľských štýlov.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie správcu používateľských štýlov.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie správcu používateľských štýlov.

(Už mám správcu používateľských štýlov, nechajte ma ho nainštalovať!)

// ==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);
})();