Skip to content

Instantly share code, notes, and snippets.

View davidshumway's full-sized avatar

David Shumway davidshumway

  • University of Illinois at Chicago
  • Chicago, IL
View GitHub Profile
@mohamedmansour
mohamedmansour / gist:803631
Created January 31, 2011 04:11
Get and Set localStorage from Content Script
// Content Script to save data.
chrome.extension.sendRequest({storage: 'foo', value: 'bar'});
// Content Script to get data.
chrome.extension.sendRequest({storage: 'foo'}, function(response) {
console.log('foo => ' + response.storage);
});
// Background Page