Remove the overlay so you can play the game on other browsers like FireFox
// ==UserScript==
// @name Rummikub Chrome Update Remover
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Remove the overlay so you can play the game on other browsers like FireFox
// @author yclee126
// @match https://rummikub-apps.com/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var intv = setInterval(function() {
// get element
const elem = document.querySelector('.header-fix-tester-container');
if (elem == null) {
return;
}
// remove element
elem.remove();
// stop interval loop
clearInterval(intv);
}, 100);
})();