SubmissionShareWithTitle

AtCoderの提出をシェアするときに問題のタイトルを含める

Stan na 09-08-2022. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        SubmissionShareWithTitle
// @namespace   https://github.com/tmikada
// @version      1.0
// @description AtCoderの提出をシェアするときに問題のタイトルを含める
// @include     https://atcoder.jp/contests/*/submissions/*
// @auther tmikada
// @license MIT
// ==/UserScript==
(function() {
    'use strict';

    var mondaiTitle = "";
    var thElems = document.getElementsByTagName("th");
    for(var i = 0; i < thElems.length; i++) {
        var elm = thElems[i];
        if(thElems[i].innerHTML == "問題") {
            mondaiTitle = thElems[i].nextElementSibling.textContent;
        }
    }

    var link = document.getElementsByClassName("a2a_kit a2a_kit_size_20 a2a_default_style pull-right");
    var title = link[0].getAttribute("data-a2a-title");
    link[0].setAttribute("data-a2a-title",mondaiTitle+"\r\n"+title);

})();