Javascript - как получить данные из LocalStorage? [закрыто]
Как получить данные из LocalStorage? Я хочу получить данные "product_img" и другие данные. И я хочу сделать с ними if / else.
background.js
if (message.methodDetails == "getProductDetails") {
sendResponse(getStorageItem('productDetails'));
} else {
sendResponse({});
}
content.js
chrome.runtime.sendMessage({methodDetails: "getProductDetails"}, function(response) {
if(response) {
console.log(response);
}
});