Firefox
Query for File Downloads
Firefox stores download history in the moz_annos
and moz_places
tables. You can extract information about downloaded files with the following query:
This query joins the annotations (where download information is stored) with the places table (which stores URLs) to find out what was downloaded, from where, and when.
Query for Visiting a Specific Webpage
To find instances of visiting a specific webpage, you can use:
Replace example.com
with the domain or specific webpage you're interested in. This query searches the moz_places
table for URLs that match the pattern and orders the results by the most recent visit.
Last updated
Was this helpful?