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;
})();