Stop Lowes.com from saving your credit card without permission
// ==UserScript==
// @name Lowes Credit Card Un-Saver
// @description Stop Lowes.com from saving your credit card without permission
// @version 1
// @grant none
// @match https://www.lowes.com/checkout
// @run-at document-end
// @namespace https://greasyfork.org/users/22981
// ==/UserScript==
function do_uncheck() {
console.log("Unchecking")
document.getElementById("save-new-cc").checked = false;
console.log("Unchecked")
}
window.setTimeout(do_uncheck, 1000)