AtCoder Profile2Ranking Link

link the profile page to the ranking of country/region, birth year, and affiliation

Tính đến 09-05-2021. Xem phiên bản mới nhất.

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         AtCoder Profile2Ranking Link
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  link the profile page to the ranking of country/region, birth year, and affiliation
// @author       sotanishy
// @match        https://atcoder.jp/users/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    let table = document.getElementsByClassName('dl-table')[0];
    let tbody = table.getElementsByTagName('tbody')[0];
    let tr = tbody.getElementsByTagName('tr');
    const baseUrl = 'https://atcoder.jp/ranking';

    for (let i = 0; i < tr.length; i++) {
        let head = tr[i].getElementsByTagName('th')[0].textContent;
        let td = tr[i].getElementsByTagName('td')[0];
        if (head == '国と地域' || head == 'Country/Region') {
            let img = td.getElementsByTagName('img')[0];
            let country = img.src.split('/')[5].split('.')[0];
            let a = document.createElement('a');
            a.textContent = td.textContent;
            td.textContent = '';
            a.href = `${baseUrl}?f.Country=${country}`;
            td.appendChild(img);
            td.appendChild(a);
        }
        if (head == '誕生年' || head == 'Birth Year') {
            let birthyear = td.textContent;
            let a = document.createElement('a');
            a.textContent = birthyear;
            td.textContent = '';
            a.href = `${baseUrl}?f.BirthYearLowerBound=${birthyear}&f.BirthYearUpperBound=${birthyear}`;
            td.appendChild(a);
        }
        if (head == '所属' || head == 'Affiliation') {
            let affiliation = td.textContent;
            let a = document.createElement('a');
            a.textContent = affiliation;
            td.textContent = '';
            a.href = `${baseUrl}?f.Affiliation=${affiliation.replace(' ', '+')}`;
            td.appendChild(a);
        }
    }
})();