Automatically checks "Stay anonymous" on Certitude geocache solution checker pages
// ==UserScript==
// @name Anonymous Certitude
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Automatically checks "Stay anonymous" on Certitude geocache solution checker pages
// @author Solve n' Share
// @match https://www.certitudes.org/certitude*
// @grant none
// @license MIT
// ==/UserScript==
(function () {
'use strict';
const checkbox = document.querySelector('input[name="anonymous"]');
if (checkbox && !checkbox.checked) {
checkbox.checked = true;
}
})();