I found chromium issue titled \"Allow extensions/apps to sync their own settings\" that has status \'Fixed\'. It\'s from December 2011. So, does it
chrome.experimental.storage was introduced as an experimental API in Chrome 18.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"]
}