scroll-navigate-ogs

enable scrolling to navigate game on OGS

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name        scroll-navigate-ogs
// @namespace   kvwu.io
// @match       https://online-go.com/demo/*
// @match       https://online-go.com/game/*
// @license     MIT
// @version     1.0
// @author      kvwu
// @description enable scrolling to navigate game on OGS
// ==/UserScript==
window.addEventListener('load', (event) => {
  function scrollNavigate(e) {
    e.preventDefault();
    const actionBar = document.getElementsByClassName('action-bar')[0];
    const controls = actionBar.getElementsByClassName('controls')[0].children;
    if (e.deltaY > 0) {
      const next = controls[4];
      next.click();
    } else if (e.deltaY < 0) {
      const prev = controls[2];
      prev.click();
    }
  }

  function setGobanContainerEvent() {
    const gobanContainers = document.getElementsByClassName('goban-container');
    if (gobanContainers.length > 0) {
      const gobanContainer = gobanContainers[0];
      gobanContainer.onwheel = scrollNavigate;
      return;
    }
    setTimeout(setGobanContainerEvent, 300);
  }

  setGobanContainerEvent();
});