From Fedora Project Wiki
Description
Connecting with FUTURE profile to common websites
How to test
It would be great if you could try connecting to sites that you normally connect to, but I understand if you have privacy concerns.
- TODO provide default file
- Export https sites from Firefox
- for f in $(find ~/.mozilla/firefox/ -name places.sqlite); do
- sqlite3 $f 'select distinct substr(replace(url, "https://", ""), 0, instr(replace(url, "https://", ""), "/")) from moz_places where url like 'https://%';' >>sites.txt
- done
- cat sites.txt |sort |uniq >sites.new; mv -f sites.new sites.txt
- ...
- TODO export from Chrome
Expected Results
- TODO