Atcoder Easy Jump

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

As of 2024-04-05. See the latest version.

  1. // ==UserScript==
  2. // @name Atcoder Easy Jump
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-04-05
  5. // @description Atcoderから外部のリンクへ素早くジャンプしたい方へ
  6. // @author KAM1KAZE
  7. // @match https://atcoder.jp/jump*
  8. // @license MIT
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. let params = new URL(document.location.toString()).searchParams;
  13. let jump_url = params.get("url");
  14. window.location.href = jump_url;
  15. })();