Fahad Jameel
unread,May 2, 2024, 10:16:36 AMMay 2Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Chromium Extensions, Oliver Dunk, Chromium Extensions, Fahad Jameel
Is there better documentation on this? I cannot get it to work by following the directions in the link you provided.
Here is what i did so far:
manifest.js:
storage: {
managed_schema: "schema.json"
},
schema.json
{
"type": "object",
"tenant": {
"type": "string",
"id": "my_company_name"
}
}
in the code i tried this, but always get back an empty object.
chrome.storage.managed.get(["tenant"], result => {
console.log("result", result);
});
Am I missing something?