E
E
Evergrenn2019-12-18 15:59:32
Google Chrome
Evergrenn, 2019-12-18 15:59:32

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

1 answer(s)
A
antonwx, 2019-12-18
@antonwx

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>

and open in browser

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question