Skip to content

Instantly share code, notes, and snippets.

@MShrimp4
Last active February 8, 2023 06:15
Show Gist options
  • Save MShrimp4/d3d85fc6100529979d46ba9b673ced08 to your computer and use it in GitHub Desktop.
Save MShrimp4/d3d85fc6100529979d46ba9b673ced08 to your computer and use it in GitHub Desktop.
// ==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