Answer the question
In order to leave comments, you need to log in
Is there an extension for Google Chrom that would visit a certain site after a configurable amount of time?
Unfortunately, autorefresh is not suitable, as a site like https://test.com/bay after a while turns into https://test.com/bay?__cf_chl_jschl_sk__=e41dcf279... you just need to visit https://test every 10 minutes .com/bay
Answer the question
In order to leave comments, you need to log in
It doesn't really need an extension.
Create a .html file and paste the following code into it:
<iframe id="a" src="https://www.test.com/bay"></iframe>
<script>
setInterval(function (){document.getElementById("a").src = "https://www.test.com/bay";}, 600000);
</script>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question