├── .gitattributes ├── .gitignore ├── README.md ├── Screenshots ├── Gui.png ├── Gui1.2.2.png └── Gui1.2.png ├── SteamAccountCreateHelper.sln └── SteamAccountCreateHelper ├── DatabaseFiles ├── Animes URL Pick Profile.txt └── Pop3Domains.json ├── Forms ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── frm_AddDomain.Designer.cs ├── frm_AddDomain.cs ├── frm_AddDomain.resx ├── frm_customLoginConfigure.Designer.cs ├── frm_customLoginConfigure.cs └── frm_customLoginConfigure.resx ├── Functions ├── AccessEmailPop3Client.cs ├── CreationID_DB.cs ├── Customize_Profile │ ├── Customize_profile.cs │ └── ResizeImage_Profile.cs └── ManageEmails.cs ├── Models ├── Config.cs ├── E_Mail.cs └── Pop3.cs ├── Program.cs ├── Properties ├── Resources.Designer.cs └── Resources.resx ├── SteamAccountCreateHelper.csproj ├── Utils ├── CheckDiretoryOnStartup.cs ├── Log.cs ├── RandomUtils.cs └── RequestBuilder.cs └── icon.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/Screenshots/Gui.png -------------------------------------------------------------------------------- /Screenshots/Gui1.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/Screenshots/Gui1.2.2.png -------------------------------------------------------------------------------- /Screenshots/Gui1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/Screenshots/Gui1.2.png -------------------------------------------------------------------------------- /SteamAccountCreateHelper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper.sln -------------------------------------------------------------------------------- /SteamAccountCreateHelper/DatabaseFiles/Animes URL Pick Profile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/DatabaseFiles/Animes URL Pick Profile.txt -------------------------------------------------------------------------------- /SteamAccountCreateHelper/DatabaseFiles/Pop3Domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/DatabaseFiles/Pop3Domains.json -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Forms/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Forms/Main.Designer.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Forms/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Forms/Main.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Forms/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Forms/Main.resx -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Forms/frm_AddDomain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Forms/frm_AddDomain.Designer.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Forms/frm_AddDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Forms/frm_AddDomain.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Forms/frm_AddDomain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Forms/frm_AddDomain.resx -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Forms/frm_customLoginConfigure.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Forms/frm_customLoginConfigure.Designer.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Forms/frm_customLoginConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Forms/frm_customLoginConfigure.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Forms/frm_customLoginConfigure.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Forms/frm_customLoginConfigure.resx -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Functions/AccessEmailPop3Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Functions/AccessEmailPop3Client.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Functions/CreationID_DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Functions/CreationID_DB.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Functions/Customize_Profile/Customize_profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Functions/Customize_Profile/Customize_profile.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Functions/Customize_Profile/ResizeImage_Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Functions/Customize_Profile/ResizeImage_Profile.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Functions/ManageEmails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Functions/ManageEmails.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Models/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Models/Config.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Models/E_Mail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Models/E_Mail.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Models/Pop3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Models/Pop3.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Program.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Properties/Resources.resx -------------------------------------------------------------------------------- /SteamAccountCreateHelper/SteamAccountCreateHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/SteamAccountCreateHelper.csproj -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Utils/CheckDiretoryOnStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Utils/CheckDiretoryOnStartup.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Utils/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Utils/Log.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Utils/RandomUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Utils/RandomUtils.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/Utils/RequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/Utils/RequestBuilder.cs -------------------------------------------------------------------------------- /SteamAccountCreateHelper/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cappi1998/SteamAccountCreateHelper/HEAD/SteamAccountCreateHelper/icon.ico --------------------------------------------------------------------------------