Network.getCookies
Returns all browser cookies for the current URL. Depending on the backend support, will return detailed cookie information in the cookies
field.
{
"name": "getCookies",
"parameters": [
{
"name": "urls",
"type": "array",
"items": {
"type": "string"
},
"optional": true,
"description": "The list of URLs for which applicable cookies will be fetched"
}
],
"returns": [
{
"name": "cookies",
"type": "array",
"items": {
"$ref": "Cookie"
},
"description": "Array of cookie objects."
}
],
"description": "Returns all browser cookies for the current URL. Depending on the backend support, will return detailed cookie information in the cookies
field."
}