Storing multiple objects in chrome storage

965 Views Asked by At

I am building a chrome extension in which I fetch data from an API and I want to make different objects of the data and then store it in chrome storage.
For example :-

data:[
    {
     name:"XYZ",
     URL:"xyz.com"
   },
   {
     name:"ABC",
     URL:"abc.com"
   }
]

I want to store the returned data from the API in the chrome storage as different objects.
I tried doing the following but it didn't work:


chrome.storage.sync.set({ name: 'xyz', URL: "xyz.com" });

chrome.storage.sync.set({ name: 'abc', URL:"abc.com" });

 chrome.storage.sync.get(['name'], (result) => {
    console.log(result.name);
  });

I am getting the result as only the second object I stored I tried directly passing the objects as well but it doesn't seem to work.
Is there any way to store the data in different objects and an effective way to retrieve all the data separately?

0

There are 0 best solutions below