Redirector

Automatically redirects to user-defined urls on certain pages

当前为 2025-11-15 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Redirector
// @namespace    https://facaikotei.github.io/
// @version      0
// @description  Automatically redirects to user-defined urls on certain pages
// @author       (c)2025 facaikotei (c)2016 Francisco Presencia (c)2016 Einar Egilsson
// @match        *://*/*
// @run-at       document-start
// @require      https://mirrors.sustech.edu.cn/cdnjs/ajax/libs/pagex/3.0.0/pagex.min.js
// @license      MIT
// @website      https://greasyfork.org/scripts/553780
// ==/UserScript==

(function () {
    'use strict';

    // pagex(PATTERN, location.href, (...$) => { location.replace(REDIRECT); });
    pagex(/^https:\/\/x\.com\/(.*)/, location.href, (...$) => { location.replace('https://farside.link/nitter/' + $[0]); });
    pagex(/^https:\/\/(www|old)\.reddit\.com\/(.*)/, location.href, (...$) => { location.replace('https://farside.link/redlib/' + $[1]); });
    pagex(/^https:\/\/([^/]*\.|)medium\.com\/[^?#]*-([0-9a-f]{11,12})($|\?|#)/, location.href, (...$) => { location.replace('https://freedium-mirror.cfd/' + $[1]); });
    pagex(/^https:\/\/www\.pixiv\.net\/(artworks|users)\/(\d+)/, location.href, (...$) => { location.replace('https://pixiv.perennialte.ch/' + $[0] + '/' + $[1]); });
    pagex(/^https:\/\/(m\.|zh\.|mzh\.|www\.|)moegirl\.(org\.cn|org|tw)\/([a-z][^/]*\/|)(?![a-z])(.*)/, location.href, (...$) => { location.replace('https://moegirl.icu/' + $[3]); });
})();