|  |  |  | @ -17,6 +17,8 @@ const ( | 
			
		
	
		
			
				
					|  |  |  |  | 	chromeKeyPath         = "/AppData/Local/Google/Chrome/User Data/Local State" | 
			
		
	
		
			
				
					|  |  |  |  | 	chromeBetaProfilePath = "/AppData/Local/Google/Chrome Beta/User Data/*/" | 
			
		
	
		
			
				
					|  |  |  |  | 	chromeBetaKeyPath     = "/AppData/Local/Google/Chrome Beta/User Data/Local State" | 
			
		
	
		
			
				
					|  |  |  |  | 	chromiumProfilePath   = "/AppData/Local/Chromium/User Data/*/" | 
			
		
	
		
			
				
					|  |  |  |  | 	chromiumKeyPath       = "/AppData/Local/Chromium/User Data/Local State" | 
			
		
	
		
			
				
					|  |  |  |  | 	edgeProfilePath       = "/AppData/Local/Microsoft/Edge/User Data/*/" | 
			
		
	
		
			
				
					|  |  |  |  | 	edgeKeyPath           = "/AppData/Local/Microsoft/Edge/User Data/Local State" | 
			
		
	
		
			
				
					|  |  |  |  | 	braveProfilePath      = "/AppData/Local/BraveSoftware/Brave-Browser/User Data/*/" | 
			
		
	
	
		
			
				
					|  |  |  | @ -52,6 +54,12 @@ var ( | 
			
		
	
		
			
				
					|  |  |  |  | 			Name:        chromeBetaName, | 
			
		
	
		
			
				
					|  |  |  |  | 			New:         NewChromium, | 
			
		
	
		
			
				
					|  |  |  |  | 		}, | 
			
		
	
		
			
				
					|  |  |  |  | 		"chromium": { | 
			
		
	
		
			
				
					|  |  |  |  | 			ProfilePath: os.Getenv("USERPROFILE") + chromiumProfilePath, | 
			
		
	
		
			
				
					|  |  |  |  | 			KeyPath:     os.Getenv("USERPROFILE") + chromiumKeyPath, | 
			
		
	
		
			
				
					|  |  |  |  | 			Name:        chromiumName, | 
			
		
	
		
			
				
					|  |  |  |  | 			New:         NewChromium, | 
			
		
	
		
			
				
					|  |  |  |  | 		}, | 
			
		
	
		
			
				
					|  |  |  |  | 		"edge": { | 
			
		
	
		
			
				
					|  |  |  |  | 			ProfilePath: os.Getenv("USERPROFILE") + edgeProfilePath, | 
			
		
	
		
			
				
					|  |  |  |  | 			KeyPath:     os.Getenv("USERPROFILE") + edgeKeyPath, | 
			
		
	
	
		
			
				
					|  |  |  | 
 |