Feature
agent-browser supports storage local/session get/set/clear.
Implementation
Add endpoints:
GET /storage/local?tab_id=&key= → via Runtime.evaluate (localStorage.getItem(key))
POST /storage/local?tab_id= with body {key, value} → localStorage.setItem(key, value)
DELETE /storage/local?tab_id= → localStorage.clear()
- Same for
/storage/session
Acceptance Criteria
- Can get, set, and clear localStorage/sessionStorage via HTTP API
Co-authored-by: blackfloofie 265516171+blackfloofie@users.noreply.github.com
Feature
agent-browser supports
storage local/session get/set/clear.Implementation
Add endpoints:
GET /storage/local?tab_id=&key=→ viaRuntime.evaluate(localStorage.getItem(key))POST /storage/local?tab_id=with body{key, value}→localStorage.setItem(key, value)DELETE /storage/local?tab_id=→localStorage.clear()/storage/sessionAcceptance Criteria
Co-authored-by: blackfloofie 265516171+blackfloofie@users.noreply.github.com