Terrence Miao
-
2016-01-12 13:59:57+1100
- Updated: 2016-01-12 15:15:30+1100
Can Mac do this? Rotate each Chrome tab every 5 seconds
while(1 -eq 1){
$wshell=New-Object -ComObject wscript.shell;
$wshell.AppActivate('Google Chrome');
Sleep 5;
$wshell.SendKeys('^{PGDN}');
}
in Power Shell.
Shared with: Public
Michael Poloni
- 2016-01-12 16:04:30+1100
Does Mac want to do this?
Terrence Miao
- 2016-01-12 16:26:45+1100
Good you have this if you have multiple browser's tabs for monitoring.