Skip to content

Instantly share code, notes, and snippets.

@soarcn
Created July 9, 2021 00:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soarcn/4800ce458ab60f49819fa8bd9dfe5b44 to your computer and use it in GitHub Desktop.
Save soarcn/4800ce458ab60f49819fa8bd9dfe5b44 to your computer and use it in GitHub Desktop.
Commsec Auto Refresh
// ==UserScript==
// @name Auto refresh watchlists
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Automatically refresh the watchlist every 1 min
// @author You
// @match https://www2.commsec.com.au/private/watchlist/watchlisthome.aspx
// @icon https://www.google.com/s2/favicons?domain=commsec.com.au
// @grant none
// ==/UserScript==
(function() {
setInterval(()=>{YAHOO.CoreTx.WatchlistInitialize.DisplaySelectedData(true, true)},60000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment