Skip to content

Instantly share code, notes, and snippets.

@sterfry1988
Created November 16, 2011 18:08
Show Gist options
  • Save sterfry1988/1370838 to your computer and use it in GitHub Desktop.
Save sterfry1988/1370838 to your computer and use it in GitHub Desktop.
<script src="sample.js">
chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
console.log("Request test");
if (request.method == "getLocalStorage")
console.log("Request received");
sendResponse({data: localStorage[request.key]});
else
sendResponse({});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment