.local/share/webbrowser-app/history.sqlite
$ cp .local/share/webbrowser-app/history.sqlite .
$ sqlite3 history.sqlite
SQLite version 3.8.5 2014-06-04 14:06:34
Enter ".help" for usage hints.
sqlite> .tables
history
sqlite> .schema history
CREATE TABLE history (
url VARCHAR,
domain VARCHAR,
title VARCHAR,
icon VARCHAR,
visits INTEGER,
lastVisit DATETIME
);
sqlite> .output url.txt
sqlite> select * from history ;
sqlite> .quit
$ cat url.txt
http://www.openstreetmap.org/about|openstreetmap.org|OpenStreetMap|http://www.openstreetmap.org/assets/osm_logo_228-da06200e84d502f8a9a91965aa72a97e.png|1|1427640513
http://www.openstreetmap.org/traces|openstreetmap.org|OpenStreetMap | Public GPS traces|http://www.openstreetmap.org/assets/osm_logo_228-da06200e84d502f8a9a91965aa72a97e.png|1|1427729840
http://pass.telekom.de/|telekom.de|Data usage - Xtra Handy DayFlat|http://pass.telekom.de/images/favicon.png|8|1428334325
...