AtCoder Editorial Title

AtCoderの解説ページのタイトルをわかりやすくするやつ

As of 2021-08-08. See the latest version.

  1. // ==UserScript==
  2. // @name AtCoder Editorial Title
  3. // @namespace https://fuwa.dev/
  4. // @version 0.1
  5. // @description AtCoderの解説ページのタイトルをわかりやすくするやつ
  6. // @author ibuki2003
  7. // @match https://atcoder.jp/contests/*/editorial/*
  8. // @icon https://www.google.com/s2/favicons?domain=atcoder.jp
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. const contest_name = document.title.substr(5);
  16.  
  17. const editorial_title = document.getElementsByTagName('h2')[0].innerText;
  18.  
  19. document.title = `${editorial_title} - ${contest_name}`;
  20. })();