Is LocalStorage synchronization for Chrome extensions already available?

血红的双手。 提交于 2019-11-29 13:08:25
  • chrome.experimental.storage was introduced as an experimental API in Chrome 18.
  • In Chrome 19, the API became restricted to the Dev channel.
  • Since Chrome 20, the API is not experimental any more Docs | Examples.

To use the API, manifest version 2 is required. This is the minimum manifest file to get an extension to work in Chrome 20+:

{
  "name": "test",
  "version": "1",
  "manifest_version": 2,
  "permissions": ["storage"]
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!