Imgur 重定向
// ==UserScript==
// @name Imgur Redirect
// @namespace http://tampermonkey.net/
// @description Imgur 重定向
// @version 1.0
// @match *://imgur.com/*
// @match *://www.imgur.com/*
// @run-at document-start
// @license MIT
// ==/UserScript==
(function () {
'use strict';
const PROXY_DOMAIN = 'imgur.artemislena.eu';
// 避免重复跳转
if (location.hostname === PROXY_DOMAIN) return;
const newUrl =
location.protocol +
'//' +
PROXY_DOMAIN +
location.pathname +
location.search +
location.hash;
location.replace(newUrl);
})();