브라우저 검색기록 방문기록 삭제 설정
- 브라우저 방문 기록 검색 기록 삭제 설정


//-----------------------------------------------------------------------------
< Chrome>
설정
Chrome 브라우저 로그인 계정 설정 -> google 계정 관리
https://myaccount.google.com/data-and-privacy?utm_source=chrome-profile-chooser
기록 설정을 끄기로 설정


< Edge >
브라우저 닫을 때 검색 기록 지우기 설정
edge://settings/clearBrowsingDataOnClose



//-------------------------------------
* 검색 방문 기록 삭제 명령
- 프로파일 폴더
Chrome : "%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default"
Edge : "%USERPROFILE%\AppData\Local\Microsoft\Edge\User Data\Default"
마지막 Default는 Profile 2 ... 등으로 변경될수도 있음


cd /d "%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default"
del /s /q "History"
del /s /q "Visited Links"
del /s /q "Cache\Cache_Data\*.*"
del /s /q "Sessions\*.*"
del /s /q "Shortcuts"

rem 이미 초기화 되어 저장한 Favicons 파일을 복원
copy /y Favicons-bak Favicons

* Favicons 파일 초기화 방법
Favicons 파일을 삭제후, 즐겨찾기에 있는 사이트를 모두 방문한다 
Favicons-bak 으로 파일을 저장한다.


//-----------------------------------------------------------------------------
< Firefox >

* '최근 닫은 탭' 정보 삭제하는 방법
- 옵션 -> history -> "recently closed tabs" 에 정보 저장하지 않게 하는 설정
about:config
browser.sessionstore.max_windows_undo : 0 으로 설정
browser.sessionstore.max_tabs_undo : 0 으로 설정


* 검색 저장 삭제 설정
firefox 설정 (settings -> Privacy & Security)
about:preferences#privacy    
History -> User custom settings for history

Remember browsing and download history : 체크해제
Remember search and form history : 체크해제

Clear history when Firefox closes : 체크
browsing and download history : 체크
Form & search history : 체크


* 검색 관련 설정
firefox 설정 (settings -> Search)
about:preferences#search


* firefox 주소줄에 검색 방문 기록 보이지 않게 하는 방법
https://codens.tistory.com/2764


//-------------------------------------
* 검색 방문 기록 삭제 명령
프로파일 폴더 "%USERPROFILE%\AppData\Local\Mozilla\Firefox\Profiles\프로파일폴더"

cd /d "%USERPROFILE%\AppData\Local\Mozilla\Firefox\Profiles\프로파일폴더"
powershell "rm -r -fo cache2\\*"

rem places.sqlite의 moz_places 테이블을 삭제하면 즐겨찾기 에러 발생 => 초기화된 파일 덮어쓰기
copy /y places.sqlite-bak places.sqlite
copy /y favicons.sqlite-bak favicons.sqlite

sqlite3 places.sqlite "DELETE FROM moz_historyvisits;"
sqlite3 places.sqlite "DELETE FROM moz_annos;"

sqlite3 formhistory.sqlite "DELETE FROM moz_formhistory;
sqlite3 formhistory.sqlite "VACUUM;
sqlite3 places.sqlite "VACUUM;"
sqlite3 favicons.sqlite "VACUUM;"

반응형
Posted by codens


반응형