I need to delete gmail cookies set in my chrome browser, using chrome extension , but it can delete all cookies other then Gmail cookies, then I noticed that Gmail cookies a
Chrome extensions can use chrome.cookies API, that has access to all cookies in the cookie store, including httpOnly.
chrome.cookies
httpOnly
The documentation for the API is here.
Note that this API requires declaring a permission and will not work from content scripts.