Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

chrome.storage.session availability/docs

I found several threads suggesting that chrome.storage.session API, one that should allow MV3 extensions to store sensitive data in-memory across service worker restarts, should already be available (e.g. https://bugs.chromium.org/p/chromium/issues/detail?id=1185226 or https://groups.google.com/a/chromium.org/g/chromium-extensions/c/18V6_-5Hwbw) but I struggle to find any docs/examples on how to use it. I even tried searching on github without luck. Is the chrome.storage.session API actually available in a stable version of Chrome? If so, can you point me at some relevant resources/examples?

like image 563
Rafael K. Avatar asked Mar 06 '26 07:03

Rafael K.


1 Answers

Documentation for the chrome.storage.session API is now available

https://developer.chrome.com/docs/extensions/reference/storage/#property-session

like image 120
ArcadeRenegade Avatar answered Mar 08 '26 21:03

ArcadeRenegade