OGS Utilities

Small improvements of online-go.com

目前为 2017-02-13 提交的版本。查看 最新版本

// ==UserScript==
// @name         OGS Utilities
// @description  Small improvements of online-go.com
// @author       TPReal
// @namespace    https://greasyfork.org/users/9113
// @version      0.4
// @match        *://online-go.com/*
// @grant        none
// ==/UserScript==

/* jshint esnext:true */
(()=>{
'use strict';

const TITLE_MATCHER=/^(?:\[\d+\] )?(.*)$/;

var tick=()=>{
  document.title=`[${(document.querySelector(".turn-indicator").innerText||"0").trim()}] ${TITLE_MATCHER.exec(document.title)[1]}`;
  setTimeout(tick,1000);
};
tick();

})();