Last active
February 8, 2023 06:15
-
-
Save MShrimp4/d3d85fc6100529979d46ba9b673ced08 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Sogang Proxy Quick Redirector | |
// @namespace https://github.com/MShrimp4/ | |
// @version 0.1 | |
// @description Detect Paper Journal Sites and Redirect to Sogang Library Proxy | |
// @author Y H | |
// @match http*://ieeexplore.ieee.org/document/* | |
// @icon https://library.sogang.ac.kr/image/ko/favicon.ico | |
// @grant none | |
// ==/UserScript== | |
const prefix = "https://library.sogang.ac.kr/auth/outlink?moduleId=eds&linkType=clink&targetUrl="; | |
window.location.replace(prefix + encodeURIComponent(window.location.href)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment