AtcoderSubmissionShareWithTitle

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

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

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

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

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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);

})();