我尝试使用console.log(chrome.storage)
,但它没有返回任何有用的信息。我已经使用chrome.storage.sync.set
在我的扩展程序中设置了一些值,并希望看到它们。
我可以输入console.log(localStorage)
并查看其中的所有内容。如何使用chrome.storage?
答案 0 :(得分:2)
您必须等待chrome.storage.sync.set()
行动的完成。其中一种方法是回调函数。使用chrome.storage.sync.set()
传递的值在回调中可用:
chrome.storage.sync.set({'key1': 123}, function() {
chrome.storage.sync.get("key1", function(data) {
console.log("data", data);
});
});