atcoder-add-calender

Add a Contest Schedule to your Calendar

اعتبارا من 04-10-2019. شاهد أحدث إصدار.

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

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

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.

(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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         atcoder-add-calender
// @namespace    https://github.com/penicillin0/
// @version      0.1
// @description  Add a Contest Schedule to your Calendar
// @author       penicillin0
// @license      MIT
// @match        https://atcoder.jp/contests/*
// @homepage     https://github.com/penicillin0/atcoder-add-calender#readme
// @supportURL   https://twitter.com/penicillin0at
// ==/UserScript==

(function () {
    'use strict';
    const contest_name = document.querySelector('a.contest-title').innerHTML;
    const contest_url = document.querySelector('a.contest-title');

    // 開始時間と修了時間の取得
    const times = document.querySelectorAll('small.contest-duration a');
    const start_time_formed = String(times[0]).split('=')[1].replace('&p1', '') + '00';
    const end_time_formed = String(times[1]).split('=')[1].replace('&p1', '') + '00';


    const google_calendar_url = 'http://www.google.com/calendar/event?' +
        'action=' + 'TEMPLATE' +
        '&text=' + contest_name +
        '&dates=' + start_time_formed + '/' + end_time_formed +
        '&details=' + contest_url;

    const insert_txt = `  <a href='${google_calendar_url}', target="_blank">Google Calendar</a>`;
    const place = document.querySelector('small.contest-duration');
    // window.alert(place)
    place.insertAdjacentHTML('beforeend', insert_txt);

})();