Atcoder All Tasks

Adds a button which opens all the tasks in an atcoder contest. Saves loads of time!

目前為 2022-12-11 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Atcoder All Tasks
// @namespace    https://github.com/Satrpx/
// @description  Adds a button which opens all the tasks in an atcoder contest. Saves loads of time!
// @author       Satrpx
// @version      1.0.0
// @match        *://atcoder.jp/contests/*
// @grant        none
// @license      MIT
// ==/UserScript==

function open(){
    var num=document.getElementsByClassName("table table-bordered table-striped")[0].children[1].childElementCount;
    for(var i=0;i<num;i++) window.open('https://atcoder.jp/contests/'+ind+'/tasks/'+ind+'_'+String.fromCharCode('a'.charCodeAt(0)+i));
}
var parent=document.getElementsByClassName("nav nav-tabs")[0];
var add=document.createElement("li");
var ind=location.href.split('/')[4];
parent.insertBefore(add,parent.children[2]);
var a=document.createElement("a");
add.appendChild(a);
a.textContent="All";
a.addEventListener('click',open);