F95-Zone Auto-Redirect (Optimized)

Fast, reliable auto-redirect for masked download links

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         F95-Zone Auto-Redirect (Optimized)
// @namespace    https://f95zone.to
// @version      2.0
// @description  Fast, reliable auto-redirect for masked download links
// @author       SlightlyGarbage
// @author       IrisV3rm (Original Author)
// @homepageURL  https://github.com/IrisV3rm
// @license      MIT
// @copyright    2026, IrisV3rm, SlightlyGarbage
// @match        https://f95zone.to/masked/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=f95zone.to
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    function tryRedirect() {
        const link = document.querySelector('a.host_link');
        if (link && link.href) {
            document.title = 'Redirecting...';
            link.click();
            return true;
        }
        return false;
    }

    if (tryRedirect()) return;

    const observer = new MutationObserver(() => {
        if (tryRedirect()) {
            observer.disconnect();
        }
    });

    observer.observe(document.documentElement, {
        childList: true,
        subtree: true
    });
})();