# Webbrowser history

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.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
...
```

Last updated: Sat Oct 17 16:11:03 CEST 2015


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://guru-1.gitbook.io/bq-aquaris-e-4-5-ubuntu-phone/en/chapter25.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
