Auto-Click "Click to See Spoiler"

"Click to see spoiler", as a feature of reddit, sucks. I want to be rid of it. I already saw the spoiler tag and chose to click anyway. Why am I being made to click again?? Not to mention what a pain in the ass it is when using keyboard navigation, since there's no way at all to avoid switching to the mouse for it.

As of 2019-12-01. See the latest version.

// ==UserScript==
// @name         Auto-Click "Click to See Spoiler"
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  "Click to see spoiler", as a feature of reddit, sucks. I want to be rid of it. I already saw the spoiler tag and chose to click anyway. Why am I being made to click again?? Not to mention what a pain in the ass it is when using keyboard navigation, since there's no way at all to avoid switching to the mouse for it.
// @author       Atario
// @match        https://*.reddit.com/*
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
// ==/UserScript==

// Feel free to update this script by logging in to Greasy Fork using www.bugmenot.com
(function() {

    // Old reddit
    jQuery(".expando-gate__show-once").click();

    // New reddit is a fucking abomination and the developers should be utterly ashamed
    jQuery("div[data-test-id=post-content] button").each(function(i, el) {
        if (jQuery(el).text().toLowerCase() == "click to see spoiler") {
            jQuery(el).parent().siblings("a").find("*").click();
            console.log("Fuck new reddit.");
        }
    });
})();