GitHub no more

Annoyed that ^F does not work in long github discussions? Tired from clicking "Load more" over and over again? This extension is for you! Automatically loads all comments and diffs on github.com

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         GitHub no more
// @namespace    http://tampermonkey.net/
// @version      2025-08-28
// @description  Annoyed that ^F does not work in long github discussions? Tired from clicking "Load more" over and over again? This extension is for you! Automatically loads all comments and diffs on github.com
// @author       wffl
// @match        https://github.com/*/*/issues*
// @match        https://github.com/*/*/pulls*
// @match        https://github.com/*/*/pull/*
// @match        https://github.com/issues*
// @match        https://github.com/pulls*
// @run-at       document-idle
// @icon         https://www.google.com/s2/favicons?sz=64&domain=github.com
// @license      https://github.com/WaffleLapkin/github-no-more/blob/meow/LICENSE.md
// ==/UserScript==

(function() {
    'use strict';

const find_buttons =
    (f) => Array.from(document.getElementsByTagName("button")).filter((e) =>
        // HACK: "new" github UI doesn't remove the button once clicked.
        // `.ariaDisabled` is the only way I found to check if the button was already clicked.
        // (otherwise clicking would cause updates, which would cause clicking... -> infinite loop)
        e.ariaDisabled !== "true"
        && f(e.textContent)
    );

async function expandAllLoads(mutations) {
    // If a text or button node was added
    if (!mutations.some((m) => Array.from(m.addedNodes).some((n) => n.nodeName === "#button" || n.nodeName === "#text"))) {
        return
    }

    // Click on all the "Load more…" and its variations buttons
    let loads = find_buttons((text) =>
        text.includes("Load more…")
        || text.includes("Load diff")
        || text.includes("Load all")
        || (text.includes("Load ") && text.includes(" more")) // "Load 150 more"
    );
    loads.forEach((b) => b.click());
}

let observer = new MutationObserver(expandAllLoads);
observer.observe(document.body, { childList: true, subtree: true });
})();