您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Switches all imgur links to the mirror site http://kageurufu.net/imgur
// ==UserScript== // @name Imgur Mirror // @namespace https://github.com/jhxxs // @version 0.0.1 // @description Switches all imgur links to the mirror site http://kageurufu.net/imgur // @author Kyle // @include http* // @require https://cdn.jsdelivr.net/gh/fuzetsu/userscripts@ec863aa92cea78a20431f92e80ac0e93262136df/wait-for-elements/wait-for-elements.js // @grant none // ==/UserScript== (() => { 'use strict'; let is_add = false; const regex = /imgur\.com\/(?!a\/|gallery\/)(?:r\/[a-z0-9_]+\/)?([a-z0-9]+)(\.+[a-z0-9]+)?/iu; const extensions = [ '.jpg', '.jpeg', '.png', '.gif', '.gifv', '.webm', '.mp4' ]; const getNewLink = function (imgurLink, useGif) { const match = imgurLink.match(regex); if (match) { const file = match[1]; let extension = match[2].toLowerCase(); if (!extension || !extensions.includes(extension)) { extension = '.png'; } else if ( extension === '.gifv' || extension === '.gif' || extension === '.webm' ) { extension = '.mp4'; } if (useGif && extension === '.mp4') { extension = '.gif'; } return `http://kageurufu.net/imgur/?${file + extension}`; } else { return null; } }; waitForElems({ sel: 'img,a', onmatch(node) { const isImg = node.nodeName === 'IMG'; const prop = isImg ? 'src' : 'href'; const newLink = getNewLink(node[prop], isImg); if (newLink) { if(!is_add){ const meta = document.createElement('meta'); meta.setAttribute('name', 'referrer'); meta.setAttribute('content', 'no-referrer'); document.getElementsByTagName('head')[0].appendChild(meta); is_add = true; } node[prop] = newLink; if (node.dataset.hrefUrl) { node.dataset.hrefUrl = newLink; } if (node.dataset.outboundUrl) { node.dataset.outboundUrl = newLink; } } } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址