Greasy Fork

Greasy Fork is available in English.

重定向至UNSW图书馆

自动将ACM、IEEE、Springer和ScienceDirect网站重定向至UNSW图书馆。

当前为 2024-06-05 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         UNSW Library Redirect
// @name:en      UNSW Library Redirect
// @name:zh-CN   重定向至UNSW图书馆
// @namespace    https://github.com/yujianke100/University-Library-Redirect/tree/UNSW
// @version      1.1.3
// @description  Automatically redirect from ACM, IEEE, Springer and ScienceDirect to UNSW Library.
// @description:en  Automatically redirect from ACM, IEEE, Springer and ScienceDirect to UNSW Library.
// @description:zh-CN  自动将ACM、IEEE、Springer和ScienceDirect网站重定向至UNSW图书馆。
// @author       Jianke Yu
// @match        https://dl.acm.org/*
// @match        https://ieeexplore.ieee.org/*
// @match        https://link.springer.com/*
// @match        https://www.sciencedirect.com/*
// @grant        none
// @license MIT
// ==/UserScript==

// ==UserScript==
// @name         UNSW Library Redirect
// @name:en      UNSW Library Redirect
// @name:zh-CN   重定向至UNSW图书馆
// @namespace    https://github.com/yujianke100/University-Library-Redirect/tree/UNSW
// @version      1.1.2
// @description  Automatically redirect from ACM, IEEE, Springer and ScienceDirect to UNSW Library.
// @description:en  Automatically redirect from ACM, IEEE, Springer and ScienceDirect to UNSW Library.
// @description:zh-CN  自动将ACM、IEEE、Springer和ScienceDirect网站重定向至UNSW图书馆。
// @author       Jianke Yu
// @match        https://dl.acm.org/*
// @match        https://ieeexplore.ieee.org/*
// @match        https://link.springer.com/*
// @match        https://www.sciencedirect.com/*
// @grant        none
// @license MIT
// @downloadURL https://update.greasyfork.icu/scripts/489131/UNSW%20Library%20Redirect.user.js
// @updateURL https://update.greasyfork.icu/scripts/489131/UNSW%20Library%20Redirect.meta.js
// ==/UserScript==

(function() {
    'use strict';

    var currentURL = window.location.href;
    var newURL;
    var proxySuffix = ".wwwproxy1.library.unsw.edu.au";

    // Function to check if the URL has already been redirected
    function isRedirected(url) {
        return url.includes(proxySuffix) || url.includes("redirected=true");
    }

    if (!isRedirected(currentURL)) {
        if (currentURL.startsWith("https://dl.acm.org/")) {
            newURL = currentURL.replace("https://dl.acm.org/", "https://dl-acm-org" + proxySuffix + "/") + "?redirected=true";
        } else if (currentURL.startsWith("https://ieeexplore.ieee.org/")) {
            newURL = currentURL.replace("https://ieeexplore.ieee.org/", "https://ieeexplore-ieee-org" + proxySuffix + "/") + "?redirected=true";
        } else if (currentURL.startsWith("https://link.springer.com/")) {
            newURL = currentURL.replace("https://link.springer.com/", "https://link-springer-com" + proxySuffix + "/") + "?redirected=true";
        } else if (currentURL.startsWith("https://www.sciencedirect.com/")) {
            newURL = currentURL.replace("https://www.sciencedirect.com/", "https://www-sciencedirect-com" + proxySuffix + "/") + "?redirected=true";
        }

        if (newURL) {
            window.location.href = newURL;
        }
    }
})();