Atcoderから外部のリンクへ素早くジャンプしたい方へ
Versione datata
// ==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;
})();