F95 Autoclick Download redirect button

Automatically clicks on Download button.

// ==UserScript==
// @name         F95 Autoclick Download redirect button
// @namespace    https://f95zone.to
// @version      1.0
// @description  Automatically clicks on Download button.
// @match        https://f95zone.to/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(() => {
        let button = document.querySelector('a.host_link');
        if (button) {
            button.click();
        }
    }, 100); // wait
})();