minbrowser / min

A fast, minimal browser that protects your privacy
https://minbrowser.org/
Apache License 2.0
7.71k stars 684 forks source link

Need an option to refresh a webpage every 8 Minutes #2395

Closed ham1tcagdas closed 4 months ago

ham1tcagdas commented 4 months ago

Need an option to refresh a webpage every 8 Minutes. I need to keep myself online in a store chat window like that. is it possible to do this?

ham1tcagdas commented 4 months ago

// ==UserScript== // @name G2G Script // @match *g2g.com // @exclude example.com // @run-at document-start // ==/UserScript== if (window.location.toString() === "https://www.g2g.com/chat/#/") { setTimeout(function(){ window.location.reload(1); }, 400000); }

:'( Save as a.js alright fixed my problem

PalmerAL commented 4 months ago

Yes, that is a good solution,