BIT-Programming-Jump to result

提交之后自动单击“查看结果”

Ajankohdalta 17.7.2023. Katso uusin versio.

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 or Violentmonkey 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.

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         BIT-Programming-Jump to result
// @namespace    http://tampermonkey.net/
// @version      0.1.2
// @description  提交之后自动单击“查看结果”
// @license      GPL-3.0-or-later
// @supportURL   https://github.com/YDX-2147483647/BIT-enhanced/issues
// @author       Y.D.X.
// @match        https://lexue.bit.edu.cn/mod/programming/submit.php
// @grant        none
// ==/UserScript==

(function () {
  'use strict'
  function jump_to_result () {
    const button = document.querySelector('a[href^=result]')
    if (button) {
      button.click()
    }
  }
  window.setInterval(jump_to_result, 1000)
})()