Comment #29 on issue 23145 by [email protected]: Feature: Kiosk Mode http://code.google.com/p/chromium/issues/detail?id=23145
An extension would do it within the background page ... http://code.google.com/chrome/extensions/tabs.html#method-update http://code.google.com/chrome/extensions/background_pages.html // This is how you would refresh the current tab. chrome.tabs.getSelected(null, function(tab) { chrome.tabs.update(tab.id, {url: tab.url, selected: tab.selected}, null); }); Then you can do what chadsowald stated above for doing it every 10 seconds. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings -- Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs
