├── .gitignore
├── Outlook Account Gen.sln
├── Outlook Account Gen.sln.DotSettings
├── Outlook Account Gen
├── Config.cs
├── Outlook Account Gen.csproj
└── Program.cs
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea/
2 | /.vscode/
3 | /.vs/
4 | .idea/
5 | .vscode/
6 | .vs/
7 | bin/
8 | obj/
9 | /packages/
10 | riderModule.iml
11 | /_ReSharper.Caches/
--------------------------------------------------------------------------------
/Outlook Account Gen.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Outlook Account Gen", "Outlook Account Gen\Outlook Account Gen.csproj", "{77035A0D-225F-48A2-8D59-B50059E544EB}"
4 | EndProject
5 | Global
6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
7 | Debug|Any CPU = Debug|Any CPU
8 | Release|Any CPU = Release|Any CPU
9 | EndGlobalSection
10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
11 | {77035A0D-225F-48A2-8D59-B50059E544EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
12 | {77035A0D-225F-48A2-8D59-B50059E544EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
13 | {77035A0D-225F-48A2-8D59-B50059E544EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
14 | {77035A0D-225F-48A2-8D59-B50059E544EB}.Release|Any CPU.Build.0 = Release|Any CPU
15 | EndGlobalSection
16 | EndGlobal
17 |
--------------------------------------------------------------------------------
/Outlook Account Gen.sln.DotSettings:
--------------------------------------------------------------------------------
1 |
2 | True
3 | True
--------------------------------------------------------------------------------
/Outlook Account Gen/Config.cs:
--------------------------------------------------------------------------------
1 | using Newtonsoft.Json;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Linq;
5 | using System.Text;
6 | using System.Threading.Tasks;
7 |
8 | namespace Outlook_Account_Gen
9 | {
10 | public class ExtensionJsonConfig
11 | {
12 | public string apiKey { get; set; }
13 | public string appId { get; set; }
14 | public bool useCapsolver { get; set; }
15 | public bool manualSolving { get; set; }
16 | public string solvedCallback { get; set; }
17 | public bool useProxy { get; set; }
18 | public string proxyType { get; set; }
19 | public string hostOrIp { get; set; }
20 | public string port { get; set; }
21 | public string proxyLogin { get; set; }
22 | public string proxyPassword { get; set; }
23 | public bool enabledForBlacklistControl { get; set; }
24 | public List