Greasy Fork is available in English.

TheTVDB Hide Synopses from All Seasons

Hide episode synopses/descriptions from All Seasons pages on TheTVDB.com

// ==UserScript==
// @name         TheTVDB Hide Synopses from All Seasons
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  Hide episode synopses/descriptions from All Seasons pages on TheTVDB.com
// @author       xdpirate
// @license      GPLv3
// @match        https://thetvdb.com/series/*/allseasons/*
// @match        https://www.thetvdb.com/series/*/allseasons/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=thetvdb.com
// @grant        none
// ==/UserScript==

let descriptions = document.querySelectorAll("div.col-xs-9 > p");
for(let i = 0; i < descriptions.length; i++) {
    descriptions[i].style.display = "none";

    let toggleNode = document.createElement("div");
    toggleNode.style = "cursor: pointer; border: 1px solid; border-radius: 10px; padding: 5px; width: fit-content; margin-top: 5px; margin-bottom: 5px;";
    toggleNode.innerText = "Toggle description";

    toggleNode.addEventListener("click", function() {
        if(this.nextElementSibling.style.display == "none") {
            this.nextElementSibling.style.display = "block";
        } else {
            this.nextElementSibling.style.display = "none"
        }
    });

    descriptions[i].insertAdjacentElement("beforebegin", toggleNode);
}