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