您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Reserved for the user of Bibliothèque nationale du Luxembourg (BnL). Add ".proxy.bnl.lu" at the end of publication website URL
当前为
- // ==UserScript==
- // @name Auto add BnL Proxy into URL
- // @description Reserved for the user of Bibliothèque nationale du Luxembourg (BnL). Add ".proxy.bnl.lu" at the end of publication website URL
- // @author Bowen
- // @version 0.1
- // @namespace https://greasyfork.org/users/964008
- // @license MIT
- // @match *://interscience.wiley.com/*
- // @match *://onlinelibrary.wiley.com/*
- // @match *://www3.interscience.wiley.com/*
- // @match *://emeraldinsight.com/*
- // @match *://ieee.org/*
- // @match *://ieeexplore.ieee.org/*
- // @match *://springerlink.com/*
- // @match *://springerlink.metapress.com/*
- // @match *://springerprotocols.com/*
- // @match *://journals.sagepub.com/*
- // @match *://www.scopus.com/*
- // @match *://scopus.com/*
- // @match *://sciencedirect.com/*
- // @match *://dl.acm.org/*
- // @run-at document-start
- // @grant none
- // ==/UserScript==
- var newURL = window.location.protocol + "//"
- + window.location.host.replaceAll(".", "-")
- + ".proxy.bnl.lu"
- + window.location.pathname;
- window.location.replace (newURL);