Semantle - Never give up!

Disable Semantle's "Give Up" button to prevent inadvertent (or desperate!) use.

// ==UserScript==
// @name         Semantle - Never give up!
// @namespace    http://reefnet.ca
// @version      1.0
// @license      MIT
// @description  Disable Semantle's "Give Up" button to prevent inadvertent (or desperate!) use.
// @author       Kris Wilk
// @match        https://semantle.novalis.org
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById('give-up-btn').style.display='none';
})();