Chrome拡張機能のchrome.storageに保存したデータの取得、削除方法メモ


chromeの拡張機能ではchrome.storageというAPIを使ってデータの保存ができる。
テスト中とかにchrome.storageに入れたデータを確認したり削除したくなるかもしれない(というかなった)のでその方法のメモ書き。

ポップアップを検証とかで開発者ツールを出してConsoleから下記を打てば今保存されているデータが確認できる。

Console
// storage.syncの場合
chrome.storage.sync.get(null, ((data) => {console.log(data)}));
// storage.localの場合
chrome.storage.local.get(null, ((data) => {console.log(data)}));

すべてのデータを削除するには下記のような感じ。

Console
// storage.syncの場合
chrome.storage.sync.clear();
// storage.localの場合
chrome.storage.local.clear();