Chess courtesy (deprecated, built-in to Lichess)

Lichess now has the feature built-in! Enable it at the bottom of https://lichess.org/account/preferences/game-behavior.

  1. // ==UserScript==
  2. // @name Chess courtesy (deprecated, built-in to Lichess)
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description Lichess now has the feature built-in! Enable it at the bottom of https://lichess.org/account/preferences/game-behavior.
  6. // @author lichess.org/@/thibault
  7. // @include /^https://lichess\.org\/(\w{8}|\w{12})$/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. console.log("Lichess now has the feature built-in! Enable it at the bottom of https://lichess.org/account/preferences/game-behavior");
  15.  
  16. })();