Atcoder Easy Jump

Atcoderから外部のリンクへ素早くジャンプしたい方へ

当前为 2024-04-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         Atcoder Easy Jump
// @namespace    http://tampermonkey.net/
// @version      2024-04-05
// @description  Atcoderから外部のリンクへ素早くジャンプしたい方へ
// @author       KAM1KAZE
// @match        https://atcoder.jp/jump*
// @license MIT
// ==/UserScript==

(function() {
    let params = new URL(document.location.toString()).searchParams;
    let jump_url = params.get("url");
    window.location.href = jump_url;
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址