获取被访问页面的cookie
我想知道如何使用内容脚本和后台页面之间的通信链接来获取当前正在访问的页面的cookie。这是为了延长。
I want to know how can we obtain the cookies of the current page being accessed using a communication link between the content script and background page. This is for an extension.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用内容脚本访问
document.cookie
对于您访问的每个网站。然后,您可以使用消息传递将 Cookie 从您的内容脚本传递到您的后台页面。Stack Overflow 上有很多示例,例如:
You can use Content Scripts to access
document.cookie
for each website you visit. Then you can use Message Passing to pass the cookies from your Content Script to your Background Page.There are many examples on Stack Overflow for example: