I need to see running examples of extensions for Chrome and Firefox
using :
1°) IndexeDB
2°) Local storage
I d like to now if the files created by extensions in IndexeDB or “Local storage” have a filename
different from the ones created by a website.
For “Local storage” in Chrome, file name starts with “chrome-extensions”,
and for IndexedDB ?
and for Firefox ?
Thanks for help
Yes, extension and webpage data are always separated.
indexedDB/chromedirectory in the profile, webpages underindexedDB/http+++example.com.webappsstore.sqlitedatabase, scope field determines the origin of the data. Extensions cannot use local storage.IndexedDB/chrome-extension_...directories in the profile, websites underIndexedDB/http_....Local Storagedirectory in the profile. Files containing extension data start withchrome-extension_, files containing website data withhttp_orhttps_.