So, i have an options page where the user can define certain options and it saves it in localstorage: options.html

Now, i also have a content script that needs to get the options that were defined on options.html page, but when i try to access localStorage from content script, it doesn't return the value from options page.

How do i make my content script get values from localStorage from options page or even the background page.

link|improve this question
1  
feedback

1 Answer

Content scripts run in the context of webpages, not extension pages. Therefore, if your accessing localStorage from your contentscript, it will be the storage from that webpage, not the extension page storage.

Now, to let your content script to read your extension storage (where you set them from your options page), you need to use extension message passing.

The first thing you do is tell your content script to send a request to your extension to fetch some data, and that data can be your extension localStorage:

contentscript.js

chrome.extension.sendRequest({method: "getStatus"}, function(response) {
  console.log(response.status);
});

background.html

chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
    if (request.method == "getStatus")
      sendResponse({status: localStorage['status']});
    else
      sendResponse({}); // snub them.
});

You can do an API around that to get generic localStorage data to your content script, or perhaps, get the whole localStorage array.

I hope that helped solve your problem.

To be fancy and generic ...

contentscript.js

chrome.extension.sendRequest({method: "getLocalStorage", key: "status"}, function(response) {
  console.log(response.data);
});

background.html

chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
    if (request.method == "getLocalStorage")
      sendResponse({data: localStorage[request.key]});
    else
      sendResponse({}); // snub them.
});
link|improve this answer
1  
Obviously, request could also be {method:'getStorage', key: 'status'}, and the listener would respond with the corresponding data. – J.C. Inacio May 28 '11 at 1:00
What if I want everything from the localStorage to be transferred to the extension? Can I write sendResponse({data: localStorage}); ? – Bibhas Jul 20 '11 at 19:23
Try it and see :) – Mohamed Mansour Jul 21 '11 at 21:15
I'm a bit confused. I want data from my options page to be available at background.html page.. So I make a request from Background page to the contentscript? and contentscript can send back the localStorage data? See this -> pastebin.com/xtFexFtc .. Am I doing it right? – Bibhas Jul 23 '11 at 8:01
1  
The background page and options page belong to the same extension context, so you don't need content scripts or messaging. You can call localStorage directly from the options page or use chrome.extension.getBackgroundPage from the options page. – Mohamed Mansour Jul 23 '11 at 12:43
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.