AtcoderSubmissionShareWithTitle

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

ของเมื่อวันที่ 11-08-2022 ดู เวอร์ชันล่าสุด

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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.

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

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

})();