javascript Chrome Extension Not able to read httponly cookies

前端 未结 3 1315
别跟我提以往
别跟我提以往 2020-12-19 04:06

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

3条回答
  •  一整个雨季
    2020-12-19 04:49

    Chrome extensions can use chrome.cookies API, that has access to all cookies in the cookie store, including httpOnly.

    The documentation for the API is here.

    Note that this API requires declaring a permission and will not work from content scripts.

提交回复
热议问题