cookies property
JSCookies
get
cookies
Use the chrome.cookies
API to query and modify cookies, and to be
notified when they change.
Implementation
JSCookies get cookies {
var cookiesNullable = this.cookiesNullable;
if (cookiesNullable == null) {
throw ApiNotAvailableException('chrome.cookies');
}
return cookiesNullable;
}