FrankBuss / lichess resign button remover

// ==UserScript==
// @name         lichess resign button remover
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  This script removes the resign button on the lichess.org webseite
// @author       Frank Buss
// @match        https://lichess.org/*
// @license      MIT
// @grant        none
// ==/UserScript==

var style = document.createElement('style');
style.type = 'text/css';
style.textContent = 'button.fbt.resign-confirm { display: none; }';
document.head.appendChild(style);