The webbrowser-app's history is stored in:
.local/share/webbrowser-app/history.sqlite
Make a copy and read it as:
$ cp .local/share/webbrowser-app/history.sqlite .$ sqlite3 history.sqliteSQLite version 3.8.5 2014-06-04 14:06:34Enter ".help" for usage hints.sqlite> .tableshistorysqlite> .schema historyCREATE TABLE history (url VARCHAR,domain VARCHAR,title VARCHAR,icon VARCHAR,visits INTEGER,lastVisit DATETIME);sqlite> .output url.txtsqlite> select * from history ;sqlite> .quit$ cat url.txthttp://www.openstreetmap.org/about|openstreetmap.org|OpenStreetMap|http://www.openstreetmap.org/assets/osm_logo_228-da06200e84d502f8a9a91965aa72a97e.png|1|1427640513http://www.openstreetmap.org/traces|openstreetmap.org|OpenStreetMap | Public GPS traces|http://www.openstreetmap.org/assets/osm_logo_228-da06200e84d502f8a9a91965aa72a97e.png|1|1427729840http://pass.telekom.de/|telekom.de|Data usage - Xtra Handy DayFlat|http://pass.telekom.de/images/favicon.png|8|1428334325...
Last updated: Sat Oct 17 16:11:03 CEST 2015