На моем локальном компьютере установлены три браузера: firefox, chrome, opera.
find / -name 'Local Storage'
/home/debian8/.config/opera/Local Storage
/home/debian8/.config/google-chrome/Default/Local Storage
Физический каталог для хранения данных на них можно найти с помощью find / -name 'Local Storage'
для оперы и хрома, а не для firefox.
Какой физический каталог является файлом firefox localstorage?
ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage
default permanent temporary
Чтобы отслеживать физический каталог, массив хранился в локальном хранилище в firefox таким образом.
1. открыть https;//www.yahoo.com в firefox
2. Чтобы сохранить массив с js в firebug-console
var arrDisplay = [0, 1, 1, 1];
localStorage.setItem("menuTitle", arrDisplay);
ls/home/debian8/.mozilla/firefox/4qfwwwo5.default/storage постоянный постоянный по умолчанию
Скорее всего, это в каталоге по умолчанию.
ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default
https+++www.yahoo.com
ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default/https+++www.yahoo.com
idb
ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default/https+++www.yahoo.com/idb
301792106ttes.files 301792106ttes.sqlite-shm
301792106ttes.sqlite 301792106ttes.sqlite-wal
sqlite3 /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default/https+++www.yahoo.com/idb/301792106ttes.sqlite-shm
SQLite version 3.8.7.1 2014-10-29 13:59:56
Enter ".help" for usage hints.
sqlite> .table
sqlite> .exit
sqlite3 /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default/https+++www.yahoo.com/idb/301792106ttes.sqlite-wal
SQLite version 3.8.7.1 2014-10-29 13:59:56
Enter ".help" for usage hints.
sqlite> .table
sqlite> .exit
sqlite3 /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/default/https+++www.yahoo.com/idb/301792106ttes.sqlite
SQLite version 3.8.7.1 2014-10-29 13:59:56
Enter ".help" for usage hints.
sqlite> .table
database index_data object_store unique_index_data
file object_data object_store_index sqlite > выберите * из базы данных; test | https://www.yahoo.com|1|1473647521683690|0|49152 sqlite > выберите * из index_data; sqlite > выберите * from object_store; sqlite > выберите * from unique_index_data; sqlite > выберите * из файла; sqlite > выберите * из object_data; sqlite > выберите * из object_store_index;
Нет подсказки о menuTitle
.
ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/permanent
chrome indexeddb+++fx-devtools moz-safe-about+home
Скорее всего, это каталог indexeddb +++ fx-devtools.
ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/permanent/indexeddb+++fx-devtools
idb
ls /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/permanent/indexeddb+++fx-devtools/idb
478967115deegvatroootlss--cans.files 478967115deegvatroootlss--cans.sqlite
sqlite3 /home/debian8/.mozilla/firefox/4qfwwwo5.default/storage/permanent/indexeddb+++fx-devtools/idb/478967115deegvatroootlss--cans.sqlite
SQLite version 3.8.7.1 2014-10-29 13:59:56
Enter ".help" for usage hints.
sqlite> .table
database index_data object_store unique_index_data file object_data object_store_index
sqlite> select * from database;
devtools-async-storage|indexeddb://fx-devtools|1|1475141158242996|0|49152
sqlite> select * from object_store;
1|0|keyvaluepairs|
Где menuTitle
хранился в установленном каталоге firefox?