// ==UserScript== // @name Auto Refresh // @namespace http://tampermonkey.net/ // @version 2026-04-08 // @description try to take over the world! // @author You // @match https://dyandraglobalstore-02.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=dyandraglobalstore-02.com // @grant none // ==/UserScript== (function() { 'use strict'; // Set your target datetime here (YYYY, MM-1, DD, HH, MM, SS) const targetDate = new Date(2026, 3, 9, 15, 0, 0); // April 8, 2026 at 3:00:00 PM const now = new Date(); const delay = targetDate.getTime() - now.getTime(); if (delay > 0) { setTimeout(() => { location.reload(); }, delay); } })();