cclgroupltd / ccl_chromium_reader

(Sometimes partial) Python re-implementations of the technologies involved in reading various data sources in Chrome-esque applications.
MIT License
134 stars 34 forks source link

Can you retrieve accidentally closed incognito tabs? #26

Closed kirk86 closed 2 weeks ago

kirk86 commented 2 weeks ago

I've noticed a couple of things.

The file ccl_leveldb.py imports ccl_simplesnappy but that file doesn't exist in the project. More importantly, can one with this method retrieve url from open tabs accidentally closed into an incognito chrome session.

cclgroupltd commented 2 weeks ago

Hi there, ccl_simplesnappy is referenced in the requirements.txt and pyproject.toml so if you use pip to grab the dependancies or install the project as a module using pip, that module will be pulled automatically. If you want to get it manually it's here: https://github.com/cclgroupltd/ccl_simplesnappy

I haven't tested that scenario, but to my recollection, most of the session state for incognito is kept in RAM rather than on disk, so I wouldn't feel confident in saying it could, sorry.