Auto-check all checkboxes in fastgood.cheap

Automatically check all checkboxes in the website fastgood.cheap without the 'elite hacker' easter egg showing up

// ==UserScript==
// @name        Auto-check all checkboxes in fastgood.cheap
// @namespace   Auto-check
// @version     1.0
// @description Automatically check all checkboxes in the website fastgood.cheap without the 'elite hacker' easter egg showing up
// @match       https://fastgood.cheap
// @author      Pump3d
// @grant       none
// ==/UserScript==

let elem = document.getElementsByClassName('such-an-elite-hacker');

if (elem[0]) {
    elem[0].remove();
}

[].forEach.call(document.querySelectorAll('input[type="checkbox"]'), function (checkbox) {
    checkbox.checked = true;
});