diff --git a/firefox_contentprefs.sql b/firefox_contentprefs.sql new file mode 100644 index 0000000..f5d8e51 --- /dev/null +++ b/firefox_contentprefs.sql @@ -0,0 +1,13 @@ +select +prefs.id as 'ID', +prefs.groupID as 'gID', +prefs.settingID as 'sID', +groups.name as 'SourceURL', +prefs.value as 'TargetFolder', +datetime(prefs.timestamp,'unixepoch','localtime') as 'TimeStamp', +settings.name as 'Setting' + +from prefs +join groups on prefs.groupID = groups.id +join settings on prefs.settingID = settings.id +order by TimeStamp desc \ No newline at end of file