1
- using System ;
1
+ using System ;
2
2
using System . Collections . Generic ;
3
3
using System . IO ;
4
4
using System . Linq ;
@@ -60,13 +60,16 @@ internal static class CleanHelper
60
60
static string [ ] edgeCookies =
61
61
{
62
62
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" )
64
65
} ;
65
66
static string [ ] edgeSession =
66
67
{
67
68
Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Sessions" ) ,
68
69
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" )
70
73
} ;
71
74
static string [ ] edgeCache =
72
75
{
@@ -78,6 +81,9 @@ internal static class CleanHelper
78
81
Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ Default\\ Service Worker\\ ScriptCache" ) ,
79
82
Path . Combine ( ProfileAppDataLocal , "Microsoft\\ Edge\\ User Data\\ GrShaderCache\\ GPUCache" ) ,
80
83
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" )
81
87
} ;
82
88
83
89
// BRAVE FOLDERS
@@ -89,18 +95,24 @@ internal static class CleanHelper
89
95
Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Sessions" ) ,
90
96
Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ Session Storage" ) ,
91
97
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" )
92
101
} ;
93
102
static string [ ] braveCookiesDirs =
94
103
{
95
104
Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ IndexedDB" ) ,
96
105
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" )
98
108
} ;
99
109
static string [ ] braveHistoryDirs =
100
110
{
101
111
Path . Combine ( ProfileAppDataLocal , "BraveSoftware\\ Brave-Browser\\ User Data\\ Default\\ History" ) ,
102
112
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" )
104
116
} ;
105
117
106
118
0 commit comments