@kkarhan @hailey It's not malware. It's a new warning they're putting on when you use StorageManager. Basically if you store any site data which really should be clientside (think session data, or for games, think things like high scores etc.) it will give you a warning like this now.
It's not a malware thing at all, necessarily.
I use it on my own sites all the time, esp because I like to make applications that don't depend on a central server.
@kkarhan @hailey The main issue is they dumbed down the information about the warning to the point it is useless if you actually know what you're doing, it's like "haha don't worry dumb luddite, this is just storing data from the website on your computer."
It... is not reassuring or helpful, to be quite blunt.
@hailey see https://developer.mozilla.org/en-US/docs/Web/API/StorageManager/persist
it seems to increase quotas and give more assurance that the data will actually stay, otherwise the browser may just randomly decide to nuke the stuff if it feels that’s appropriate

The persist() method of the StorageManager interface requests permission to use persistent storage, and returns a Promise that resolves to true if permission is granted and bucket mode is persistent, and false otherwise. The browser may or may not honor the request, depending on browser-specific rules. (For more details, see the guide to Storage quotas and eviction criteria.)