Created
March 13, 2025 12:34
-
-
Save optinsoft/f7665b0593eea392fca355ef3561c0db to your computer and use it in GitHub Desktop.
Extract visited domains from chrome history
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Chrome History Sqlite Db: C:\Users\YOUR_USER_NAME\AppData\Local\Google\Chrome\User Data\Default\History */ | |
| select distinct substr(substr(' '||top_level_url,instr(' '||top_level_url, '//')+2),1,instr(substr(' '||top_level_url,instr(' '||top_level_url, '//')+2)||'/','/')-1) as domain | |
| from visited_links |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment