Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

chrome extension with cloud storage

I'm making a small Chrome extension and would like to keep its data online.
I need a free and very small(<1MB per user) cloud hosting provider that has painless authentication.
Ideally, I'd just like a Google API that does localStorage, but in the cloud and different for each username.

like image 325
x10 Avatar asked Nov 19 '10 10:11

x10


2 Answers

FYI there is a new extension API to asynchronously store things like user settings, and optionally sync them across the user's other devices.

https://developer.chrome.com/extensions/storage.html

For example:

chrome.storage.sync.set({name:'Bob'}, function() {
  console.log('Name saved');
});

// Later on...
chrome.storage.sync.get('name', function(r) {
  console.log('Name retrieved: ' + r['name']);
});

Using sync will sync this across devices, using local will not.

like image 108
Jason Hall Avatar answered Sep 28 '22 10:09

Jason Hall


Why can't you use Google App Engine? The API is pretty easy to use. Or use other Google services tied to each individual user such as Google Docs. That is how Google Chrome Sync stores bookmarks that are synchronized in your browser through Docs.

Concerning localStorage, localStorage is a key value storage API for JavaScript (Client Side). If you want to store your extension's localStorage externally online, you can iterate your storage keys/values and store them through contacting some external (whatever API you use) service. And retrieve them every time your extension starts (in background.html page).

Why would you do that though? Google Chrome Sync, synchronizes all those information by default.

like image 40
Mohamed Mansour Avatar answered Sep 28 '22 11:09

Mohamed Mansour