您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically redirect from ACM, IEEE, Springer and ScienceDirect to UNSW Library.
当前为
// ==UserScript== // @name UNSW Library Redirect // @namespace https://github.com/yujianke100/University-Library-Redirect/tree/UNSW // @version 1.0.1 // @description Automatically redirect from ACM, IEEE, Springer and ScienceDirect to UNSW Library. // @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== (function() { 'use strict'; var currentURL = window.location.href; var newURL; if (currentURL.startsWith("https://dl.acm.org/")) { newURL = currentURL.replace("https://dl.acm.org/", "https://dl-acm-org.wwwproxy1.library.unsw.edu.au/"); } else if (currentURL.startsWith("https://ieeexplore.ieee.org/")) { newURL = currentURL.replace("https://ieeexplore.ieee.org/", "https://ieeexplore-ieee-org.wwwproxy1.library.unsw.edu.au/"); } else if (currentURL.startsWith("https://link.springer.com/")) { newURL = currentURL.replace("https://link.springer.com/", "https://link-springer-com.wwwproxy1.library.unsw.edu.au/"); } else if (currentURL.startsWith("https://www.sciencedirect.com/")) { newURL = currentURL.replace("https://www.sciencedirect.com/", "https://www-sciencedirect-com.wwwproxy1.library.unsw.edu.au/"); } window.location.href = newURL; })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址