1- using System ;
1+ using System ;
22using System . Collections . Generic ;
33using System . IO ;
44using System . Linq ;
@@ -60,13 +60,16 @@ internal static class CleanHelper
6060 static string [ ] edgeCookies =
6161 {
6262 Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Cookies" ) ,
63- Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ IndexedDB" )
63+ Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ IndexedDB" ) ,
64+ Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Local Storage" )
6465 } ;
6566 static string [ ] edgeSession =
6667 {
6768 Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Sessions" ) ,
6869 Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Session Storage" ) ,
69- Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Extension State" )
70+ Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Extension State" ) ,
71+ Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Local Extension Settings" ) ,
72+ Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Local Storage" )
7073 } ;
7174 static string [ ] edgeCache =
7275 {
@@ -78,6 +81,9 @@ internal static class CleanHelper
7881 Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Service Worker\\ ScriptCache" ) ,
7982 Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ GrShaderCache\\ GPUCache" ) ,
8083 Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Service Worker\\ Database" ) ,
84+ Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Service Worker" ) ,
85+ Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ LocalCache" ) ,
86+ Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ #!001\\ Cache" )
8187 } ;
8288
8389 // BRAVE FOLDERS
@@ -89,18 +95,24 @@ internal static class CleanHelper
8995 Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Sessions" ) ,
9096 Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Session Storage" ) ,
9197 Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Extension State" ) ,
98+ Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Local Storage" ) ,
99+ Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ IndexedDB" ) ,
100+ Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Service Worker" )
92101 } ;
93102 static string [ ] braveCookiesDirs =
94103 {
95104 Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ IndexedDB" ) ,
96105 Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Cookies" ) ,
97- Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Cookies-journal" )
106+ Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Cookies-journal" ) ,
107+ Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Local Storage" )
98108 } ;
99109 static string [ ] braveHistoryDirs =
100110 {
101111 Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ History" ) ,
102112 Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ History Provider Cache" ) ,
103- Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ History-journal" )
113+ Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ History-journal" ) ,
114+ Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Top Sites" ) ,
115+ Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Visited Links" )
104116 } ;
105117
106118
0 commit comments