UVA Tab Problem Title

Put problem name in as title when viewing a problem on UVA

目前为 2017-04-10 提交的版本。查看 最新版本

// ==UserScript==
// @name        UVA Tab Problem Title
// @namespace   https://gf.qytechs.cn/users/8233
// @description Put problem name in as title when viewing a problem on UVA
//@include      https://uva.onlinejudge.org/*
// @version     1
// @grant       none
// ==/UserScript==
var probname = document.getElementById('col3_content_wrapper').getElementsByTagName('h3') [0].innerText;
if (probname !== undefined) {
  document.title = probname;
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址