I am building a Chrome Extension and in the main page (e.g index.html) I am downloading data that is saved like this
Json object:
return {
Companies: dict, //dict is a HashMap
totalCompanies: companies, //int
totalEmployees: numEmployees, //int
};
this json can be pretty massive in size(because in the hashmap I save for each company an array of employees), how can I work with this json in a different page like Employees.html?
I mean index.html is the one downloading it, and I want to work with it on Employees.html.