OGS Utilities

Small improvements of online-go.com

Tính đến 15-06-2015. Xem phiên bản mới nhất.

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

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

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.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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         OGS Utilities
// @description  Small improvements of online-go.com
// @author       TPReal
// @namespace    https://greasyfork.org/users/9113
// @version      0.3
// @match        *://online-go.com/*
// @grant        none
// ==/UserScript==

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

var updateTitle=function(){
  var value=$("#turn-notification-indicator").text();
  var prefix="";
  if(value&&value!=="0")
    prefix="["+value+"] ";
  var baseTitle;
  var path=document.location.pathname;
  if(path==="/"||path==="/overview")
    baseTitle="Your games";
  else
    baseTitle=TITLE_MATCHER.exec(document.title)[1];
  document.title=prefix+baseTitle;
};

var isFullscreen=function(){
  return screen.width==window.outerWidth&&screen.height==window.outerHeight;
};

var fullscreenStyle=$("<style> \
  #game-main-container > #game-controls { \
    display:none; \
  } \
  </style>").appendTo(document.head)[0];
$("<style> \
  .move-control i.fa { \
    font-size: 2em; \
  } \
  span.move-control[ng-click='nav_first()'], \
  span.move-control[ng-click='nav_prev_10()'], \
  span.move-control[ng-click='nav_play_pause()'], \
  span.move-control[ng-click='nav_next_10()'] { \
  span.move-control[ng-click='nav_next()'] { \
    display: none; \
  } \
  </style>").appendTo(document.head);

var updateFullscreenStyle=function(){
  fullscreenStyle.sheet.disabled=!isFullscreen();
};

var tick=function(){
  updateTitle();
  updateFullscreenStyle();
  setTimeout(tick,1000);
};
tick();