我正在开发一个chrome扩展程序,我想知道,是否有办法将整个本地存储传递给后台来自后台页面使用
message passing between content script and extension page
这样我就可以使用内容脚本中的本地存储的所有键/值了吗?
答案 0 :(得分:0)
从背景页面发送:
sendResponse({all_lS: JSON.stringify(localStorage));
内容中的:
var lS = JSON.parse(response.all_lS);
它将是您的localStorage的副本。