// ==UserScript== // @name Bundle Stars skip age confirmation // @description Removes the age verification prompt on Bundle Stars // @namespace bundlestars // @match *://*.bundlestars.com/* // @version 1 // @grant none // @run-at document-start // @downloadURL none // ==/UserScript== (function () { "use strict"; try { localStorage.setItem("ls.age-dob", "1970-01-01T00:00:00.000Z"); } catch (ignore) {} })();