Add files via upload

master
Costas K 6 years ago committed by GitHub
parent 72b5b5b544
commit 951dd28b6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,3 +1,5 @@
-- \AppData\Roaming\Mozilla\Firefox\Profiles\
select
moz_icons.id as 'IconId',
moz_pages_w_icons.id as 'PageID',
@ -8,7 +10,7 @@ moz_icons.icon_url as 'IconUrl',
moz_icons.width as 'Width',
moz_icons.root as 'Root',
moz_icons.color as 'Color',
case when moz_icons.expire_ms <> 0 then datetime(moz_icons.expire_ms/1000,'unixepoch') else '' end as 'Expire',
case when moz_icons.expire_ms <> 0 then datetime(moz_icons.expire_ms/1000,'unixepoch','localtime') else '' end as 'Expire',
hex(moz_icons.fixed_icon_url_hash) as 'IconHash',
hex(moz_pages_w_icons.page_url_hash) as 'UrlHash'

@ -0,0 +1,12 @@
-- \AppData\Roaming\Mozilla\Firefox\Profiles\
select
moz_formhistory.id as 'Id',
moz_formhistory.fieldname as 'FieldName',
moz_formhistory.value as 'Value',
moz_formhistory.timesUsed as 'TimesUsed',
datetime(moz_formhistory.firstUsed/1000000,'unixepoch','localtime') as 'FirstUsed',
datetime(moz_formhistory.lastUsed/1000000,'unixepoch','localtime') as 'LastUsed',
moz_formhistory.guid as 'Guid'
from moz_formhistory
order by LastUsed desc

@ -1,5 +1,6 @@
-- https://developer.mozilla.org/en-US/docs/Mozilla/Tech/Places/Database
-- https://developer.mozilla.org/en-US/docs/Mozilla/Tech/Places/Frecency_algorithm
-- \AppData\Roaming\Mozilla\Firefox\Profiles\
select
moz_places.id as 'Id',

Loading…
Cancel
Save