LoginSignup
13
9

More than 5 years have passed since last update.

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

Last updated at Posted at 2018-10-10

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();
13
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
9