您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
跳转嘎嘎快,适配语雀,少数派,简书,掘金,CSDN,InfoQ,知乎等大部分网站,打开外链时,自动跳转到目标网站.
当前为
// ==UserScript== // @name 外链自动跳转 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 跳转嘎嘎快,适配语雀,少数派,简书,掘金,CSDN,InfoQ,知乎等大部分网站,打开外链时,自动跳转到目标网站. // @author uiliugang // @run-at document-start // @match *://*/* // @license MIT // ==/UserScript== (function() { 'use strict'; let url = window.location.href; // 经本人观察, 主流网站的重定向页面会包含?, 如果不包含?, 默认不是重定向页面, 不跳转. if(url.indexOf('?') == -1) return; let processedUrl = processUrl(url); if(processedUrl !== url){ window.location.replace(processedUrl); } function processUrl(redirectURL) { let linkSections; let redirectIdentifier = ['?target=', '?to=', '?ac=2&url=', '?url=','?remoteUrl=','?redirect=','?u=','?goto=','?link=']; for (let i = 0; i < redirectIdentifier.length; i++) { let identifier = redirectIdentifier[i]; if (redirectURL.indexOf(identifier) !== -1) { linkSections = redirectURL.split(identifier); return decodeURIComponent(linkSections[1]); } } return redirectURL; } })();