you will need to edit these line in activitystream.js file
Change this line
Code:
if(this.options.refresh*60000>300000){this.idlerefresh=this.options.refresh*60000}else{this.idlerefresh=300000}
To
Code:
if(this.options.refresh*1000>60000){this.idlerefresh=this.options.refresh*1000}else{this.idlerefresh=60000}
now if you enter 5 in vB default setting, it will be treated as 5 seconds.