我可以使用 Chrome 扩展 API 获取存储密钥的值:
chrome.storage.sync.get("someKey", function() {});
如何获取 Chrome 存储中存在的所有键名?
我可以使用 Chrome 扩展 API 获取存储密钥的值:
chrome.storage.sync.get("someKey", function() {});
如何获取 Chrome 存储中存在的所有键名?
从文档(强调我的):
空列表或对象将返回空结果对象。传入
null
以获取存储的全部内容。如果您使用本地存储,请不要忘记将“storage.sync”更改为 storage.local。
对于一些示例代码:
chrome.storage.sync.get(null, function(items) {
var allKeys = Object.keys(items);
console.log(allKeys);
});