LoginSignup
6
6

More than 5 years have passed since last update.

chrome アプリ/拡張機能でのデータ保存

Last updated at Posted at 2013-12-24

chrome アプリでlocalStorageを使ったところ、Consoleで

window.localStorage is not available in packaged apps. Use chrome.storage.local instead.

と言われてしまった。

localStorageは拡張機能では問題なく使えた。
アプリと拡張機能では使用可能なストレージAPIが異なるのだろうか?
私の知っているほかのデータ保存系APIについても調べてみた。

chrome.* APIs (Chrome Platform APIs)

API アプリ 拡張機能
chrome.bookmark X O
chrome.fileSystem O X
chrome.storage O O
chrome.syncFileSystem O X

Web APIs

API アプリ 拡張機能
FileSystem O O
Indexed Database O O
localStorage X O
sessionStorage O O
Web SQL Database X O

参考文献

6
6
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
6
6