Greasy Fork is available in English.

AtCoder Editorial Title

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

// ==UserScript==
// @name         AtCoder Editorial Title
// @namespace    https://fuwa.dev/
// @version      0.1
// @description  AtCoderの解説ページのタイトルをわかりやすくするやつ
// @author       ibuki2003
// @match        https://atcoder.jp/contests/*/editorial/*
// @icon         https://www.google.com/s2/favicons?domain=atcoder.jp
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const contest_name = document.title.substr(5);

    const editorial_title = document.getElementsByTagName('h2')[0].innerText;

    document.title = `${editorial_title} - ${contest_name}`;
})();