clear-auth-cookies
Clears saved authentication cookies for a specific domain or all domains to manage session data and improve security during web interactions.
Instructions
Clears saved authentication cookies for a specific domain or all domains
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | No | URL of the domain to clear cookies for. If not provided, clears all cookies. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "URL of the domain to clear cookies for. If not provided, clears all cookies.",
"format": "uri",
"type": "string"
}
},
"type": "object"
}