AtcoderSubmissionShareWithTitle

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

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        AtcoderSubmissionShareWithTitle
// @namespace   https://github.com/tmikada
// @version      1.01
// @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 tweetButton = document.getElementsByClassName("a2a_button_twitter");
    var linkNode = tweetButton[0].parentNode;
    var title = linkNode.getAttribute("data-a2a-title");
    linkNode.setAttribute("data-a2a-title",mondaiTitle+"\r\n"+title);

})();