storage
Access and manage browser storage including cookies, localStorage, and sessionStorage. Perform actions like get, set, or clear storage data.
Instructions
Access and manage browser storage (cookies, localStorage, sessionStorage). Actions: getCookies (get cookies), setCookie (set cookie), getLocalStorage (get localStorage), setLocalStorage (set localStorage), clear (clear storage)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | localStorage key (optional for getLocalStorage, required for setLocalStorage) | |
| url | No | URL to get cookies for (optional for getCookies action) | |
| name | No | Cookie name (required for setCookie action) | |
| path | No | Cookie path (optional for setCookie action) | |
| types | No | Storage types to clear (for clear action, default: all) | |
| value | No | Cookie/storage value (required for setCookie and setLocalStorage actions) | |
| action | Yes | Storage action: getCookies (get cookies), setCookie (set cookie), getLocalStorage (get localStorage), setLocalStorage (set localStorage), clear (clear storage) | |
| domain | No | Cookie domain (optional for setCookie action) | |
| reason | No | Why storage needs to be cleared (required for clear action) | |
| secure | No | Secure cookie (optional for setCookie action, default: false) | |
| expires | No | Cookie expiration timestamp (optional for setCookie action) | |
| httpOnly | No | HTTP only cookie (optional for setCookie action, default: false) | |
| connectionReason | No | Connection reference (use the reference from launchChrome output, e.g., "unnamed-connection-default" or your renamed tab) |