diff options
Diffstat (limited to 'background_page.html')
| -rw-r--r-- | background_page.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/background_page.html b/background_page.html index 0f86e3ce..c065333d 100644 --- a/background_page.html +++ b/background_page.html @@ -308,9 +308,11 @@ }; function getHistory(args, port) { - chrome.history.search({ text: '', - maxResults: args.maxResults || 1000 }, - function(history) { + chrome.history.search({ + text: '', + maxResults: args.maxResults || 1000, + startTime: 0, + }, function(history) { port.postMessage({history:history}); }); }; |
