Чтобы получить доступ к расширению localStorage, вам необходимо отправить запрос на фоновую страницу:
В script.js:
chrome.extension.sendRequest("getStorageData", function(response) {
console.log("response:", response);
}
В background.html:
chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
if(request === "getStorageData") {
sendResponse(localStorage["data"]);
}
});
Cookies API подробно описан здесь .