Connects to user's running Brave via Chrome DevTools Protocol to automate ChatGPT interaction. Uses puppeteer-core to open a tab, send the prompt, wait for response, and extract the result. No cookies, no separate profiles, no copy/paste. Just connects to the browser where the user is already logged in. One-time setup: relaunch Brave with --remote-debugging-port=9222 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
73 lines
1.7 KiB
Plaintext
73 lines
1.7 KiB
Plaintext
# Copyright 2017 The Chromium Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# Contributing to Chrome DevTools Protocol: https://goo.gle/devtools-contribution-guide-cdp
|
|
|
|
# Query and modify DOM storage.
|
|
experimental domain DOMStorage
|
|
|
|
type SerializedStorageKey extends string
|
|
|
|
# DOM Storage identifier.
|
|
type StorageId extends object
|
|
properties
|
|
# Security origin for the storage.
|
|
optional string securityOrigin
|
|
# Represents a key by which DOM Storage keys its CachedStorageAreas
|
|
optional SerializedStorageKey storageKey
|
|
# Whether the storage is local storage (not session storage).
|
|
boolean isLocalStorage
|
|
|
|
# DOM Storage item.
|
|
type Item extends array of string
|
|
|
|
command clear
|
|
parameters
|
|
StorageId storageId
|
|
|
|
# Disables storage tracking, prevents storage events from being sent to the client.
|
|
command disable
|
|
|
|
# Enables storage tracking, storage events will now be delivered to the client.
|
|
command enable
|
|
|
|
command getDOMStorageItems
|
|
parameters
|
|
StorageId storageId
|
|
returns
|
|
array of Item entries
|
|
|
|
command removeDOMStorageItem
|
|
parameters
|
|
StorageId storageId
|
|
string key
|
|
|
|
command setDOMStorageItem
|
|
parameters
|
|
StorageId storageId
|
|
string key
|
|
string value
|
|
|
|
event domStorageItemAdded
|
|
parameters
|
|
StorageId storageId
|
|
string key
|
|
string newValue
|
|
|
|
event domStorageItemRemoved
|
|
parameters
|
|
StorageId storageId
|
|
string key
|
|
|
|
event domStorageItemUpdated
|
|
parameters
|
|
StorageId storageId
|
|
string key
|
|
string oldValue
|
|
string newValue
|
|
|
|
event domStorageItemsCleared
|
|
parameters
|
|
StorageId storageId
|