[Userscript] Automatically click Continue to.. filehost redirect button.

Jul 27, 2021
204
1,290
Created a simple userscript that automatically clicks the redirect button whenever you select a fileshare:
Greasyfork link:
1689357682924.png

To use it you need:

  • Chrome: or
  • Firefox: , , or
  • Safari: or
  • Microsoft Edge: or
  • Opera: or
  • Maxthon:

Code:
// ==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
})();
 
Last edited: