As this question and answer seems to be horribly outdated: Where does flash player save permanent files to, like game saves, or configurations?
is there something similar for the ruffle flash player?
As this question and answer seems to be horribly outdated: Where does flash player save permanent files to, like game saves, or configurations?
is there something similar for the ruffle flash player?
Ruffle writes Flash save data into Local Storage. Local Storage is stored client-side and not on the server. However, Flash content could send the data to a server via an HTTP request (see below). Storage in Flash happens through the use of
SharedObject.
Window:localStorage located?It depends on what browser you are running:
Storage of web storage objects is enabled by default in current versions of all supporting web browsers, with browser vendors providing ways for users to natively enable or disable web storage, or clear the web storage "cache".[17] Similar controls over web storage are also available through 3rd party browser extensions. Each browser stores Web storage objects differently:
- Firefox saves Web storage objects in a SQLite file called webappsstore.sqlite in the user's profile folder.
- Google Chrome records Web storage data in a SQLite file in the user's profile. The subfolder containing this file is "\AppData\Local\Google\Chrome\User Data\Default\Local Storage" on Windows, and "~/Library/Application Support/Google/Chrome/Default/Local Storage" on macOS.
- Opera's Web storage is located in either "\AppData\Roaming\Opera\Opera\sessions\autosave.win" or "\AppData\Local\Opera\Opera\pstorage" depending upon Opera's version.
- Internet Explorer's Web storage is "\AppData\LocalLow\Microsoft\Internet Explorer\DOMStorage".
- Safari's Web Storage is located in a folder labeled "LocalStorage" within a hidden "safari" folder.
Source Web storage - Wikipedia
For Edge see local storage - Where does Microsoft Edge save localstorage on a computer under windows 10? - Stack Overflow