我为谷歌浏览器开发了两个扩展(比如扩展A和扩展名B)。扩展A使用Content-scripts.js A,扩展B使用content-scripts.js B.
在content-scripts.js A中,我使用了localStorage.setItem(“parameterVariable”,“hi”);
在content-scripts.js B中,我使用了localStorage.getItem(“parameterVariable”),假设返回“hi”,因为扩展A首先运行并设置“paraneterVariable”,而扩展B使用它。但它返回NULL。
如何使扩展名B的localStorage.getItem(“parameterVariable”)返回扩展名B设置的值。
提前致谢。