Home > Software design >  How to periodically check latest stable version of chrome?
How to periodically check latest stable version of chrome?

Time:04-06

I’ve tried looking at Google’s git repo, and I just see so many tags with different version numbers. Any suggestions of how to periodically check for a new chrome version that gets released with js code? I’m not sure what kind of data scraping I need to do, if any.

CodePudding user response:

You can get the current Chrome versions from this endpoint:

https://versionhistory.googleapis.com/v1/chrome/platforms/win/channels/stable/versions

For more information on that, see the Chrome Version Guide Docs.

And to check this periodically would depend on how/ where you are running this code, if you provide more info to your question I can give you a sample code snippet.

CodePudding user response:

you might scrape the information from this site: https://www.whatismybrowser.com/guides/the-latest-version/chrome

  • Related