Bundle Stars skip age confirmation

Removes the age verification prompt on Bundle Stars

As of 2017-09-18. See the latest version.

// ==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
// ==/UserScript==

(function () {
	"use strict";

	try {
		localStorage.setItem("ls.age-dob", "1970-01-01T00:00:00.000Z");
	} catch (ignore) {}
})();