Chromium中使用的会话存储格式是什么?
当网站使用HTML5网络存储时,Chromium将本地存储和会话存储的数据存储在不同的目录中。就我而言(Ubuntu 16.04)是~/.config/chromium/Default/Local Storage和~/.config/chromium/Default/Session Storage。 本地存储数据存储在SQLite数据库中,可以使用诸如之类的工具进行检查DB Browser for SQLite。Chromium在每个域的数据库文件上创建: user@desktop-10:~/.config/chromium/Default/Local Storage$ ls -l total 18 -rw-r--r-- 1 user students2016 4096 Mar 7 14:15 https_hangouts.google.com_0.localstorage -rw-r--r-- 1 user students2016 0 Mar 7 14:15 https_hangouts.google.com_0.localstorage-journal -rw-r--r-- 1 user students2016 3072 Mar 7 14:15 https_notifications.google.com_0.localstorage -rw-r--r-- 1 user students2016 0 Mar 7 14:15 https_notifications.google.com_0.localstorage-journal …