您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects automatically and instantly from deref-gmx.net
// ==UserScript== // @name Deref GMX: instant redirection // @name:de Deref GMX: sofortige Weiterleitung // @author Sebastian // @description Redirects automatically and instantly from deref-gmx.net // @description:de Automatische und sofortige Weiterleitung von deref-gmx.net zur Zielseite // @namespace https://greasyfork.org/de/users/165723-sumfui // @include https://deref-gmx.net/* // @version 0.1 // @grant none // @run-at document-start // @license CC by-sa http://creativecommons.org/licenses/by-sa/3.0/ // ==/UserScript== var url_string = window.location.href; var url = new URL(url_string); var c = url.searchParams.get("redirectUrl"); var dec = decodeURI(c); window.location.replace(dec);