I can get the value of a storage key with the Chrome Extension API:
chrome.storage.sync.get("someKey", function() {});
How can I get all key names that exist in the Chrome storage?
I can get the value of a storage key with the Chrome Extension API:
chrome.storage.sync.get("someKey", function() {});
How can I get all key names that exist in the Chrome storage?
Copyright © 2021 Jogjafile Inc.
From the documentation (emphasis mine):
For some example code: