访问 cookie ||来自内容脚本的 localSorage - Chrome 扩展
有没有办法访问cookie ||来自内容脚本的localSorage?
例如我有 localStorage.shBox='true'
并且我想从内容脚本访问它..我该如何做到这一点?
Is there any way to access cookies || localSorage from content script?
for example i have localStorage.shBox='true'
and I want to access this from content script.. how can I make this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了访问扩展程序的 localStorage,您需要向后台页面发送请求:
在 script.js 中:
在 background.html 中:
详细描述了 Cookies API 此处。
In order to access extension's localStorage you need to send a request to your background page:
In script.js:
In background.html:
Cookies API is described in details here.