get_browser_history
Retrieve raw browser history data from multiple browsers within a specified time period for further analysis. Supports Firefox, Chrome, Safari, and auto-detection of browser types.
Instructions
Step 2: Get raw browser history data without analysis. This is the fastest way to retrieve browser history and should be used before any analysis.
Args:
time_period_in_days: Number of days of history to retrieve (default: 7)
browser_type: Browser type ('firefox', 'chrome', 'safari', or None for auto-detect)
all_browsers: If True, get history from all available browsers (default: True)
Returns:
Either a list of history entries or a dictionary with partial results and browser status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
all_browsers | No | ||
browser_type | No | ||
time_period_in_days | No |
Input Schema (JSON Schema)
{
"properties": {
"all_browsers": {
"default": true,
"title": "All Browsers",
"type": "boolean"
},
"browser_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Browser Type"
},
"time_period_in_days": {
"default": 7,
"title": "Time Period In Days",
"type": "integer"
}
},
"title": "get_browser_historyArguments",
"type": "object"
}