├── .gitignore ├── BrowserProvider.cs ├── Chrome.cs ├── Chromium.cs ├── ChromiumBase.cs ├── CopyDependencies.bat ├── Cryptography.cs ├── DBHandler.cs ├── DateUtils.cs ├── EntryInfo.cs ├── Extensions.cs ├── Firefox.cs ├── IBrowserImporter.cs ├── InternetExplorer.cs ├── KeePassBrowserImporter.csproj ├── KeePassBrowserImporter.sln ├── KeePassBrowserImporterExt.cs ├── LICENSE ├── Opera.cs ├── ProfileNotFoundException.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── ProviderForm.Designer.cs ├── ProviderForm.cs ├── ProviderForm.resx ├── PwDatabaseExtension.cs ├── README.md ├── Resources ├── B16x16_Apply.png ├── B16x16_Chrome.png ├── B16x16_Chromium.png ├── B16x16_Combined.png ├── B16x16_Firefox.png ├── B16x16_InternetExplorer.png └── B16x16_Opera.png ├── WebClientEx.cs ├── keepass.version └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/.gitignore -------------------------------------------------------------------------------- /BrowserProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/BrowserProvider.cs -------------------------------------------------------------------------------- /Chrome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Chrome.cs -------------------------------------------------------------------------------- /Chromium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Chromium.cs -------------------------------------------------------------------------------- /ChromiumBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/ChromiumBase.cs -------------------------------------------------------------------------------- /CopyDependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/CopyDependencies.bat -------------------------------------------------------------------------------- /Cryptography.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Cryptography.cs -------------------------------------------------------------------------------- /DBHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/DBHandler.cs -------------------------------------------------------------------------------- /DateUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/DateUtils.cs -------------------------------------------------------------------------------- /EntryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/EntryInfo.cs -------------------------------------------------------------------------------- /Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Extensions.cs -------------------------------------------------------------------------------- /Firefox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Firefox.cs -------------------------------------------------------------------------------- /IBrowserImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/IBrowserImporter.cs -------------------------------------------------------------------------------- /InternetExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/InternetExplorer.cs -------------------------------------------------------------------------------- /KeePassBrowserImporter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/KeePassBrowserImporter.csproj -------------------------------------------------------------------------------- /KeePassBrowserImporter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/KeePassBrowserImporter.sln -------------------------------------------------------------------------------- /KeePassBrowserImporterExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/KeePassBrowserImporterExt.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/LICENSE -------------------------------------------------------------------------------- /Opera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Opera.cs -------------------------------------------------------------------------------- /ProfileNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/ProfileNotFoundException.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /ProviderForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/ProviderForm.Designer.cs -------------------------------------------------------------------------------- /ProviderForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/ProviderForm.cs -------------------------------------------------------------------------------- /ProviderForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/ProviderForm.resx -------------------------------------------------------------------------------- /PwDatabaseExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/PwDatabaseExtension.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/README.md -------------------------------------------------------------------------------- /Resources/B16x16_Apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Resources/B16x16_Apply.png -------------------------------------------------------------------------------- /Resources/B16x16_Chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Resources/B16x16_Chrome.png -------------------------------------------------------------------------------- /Resources/B16x16_Chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Resources/B16x16_Chromium.png -------------------------------------------------------------------------------- /Resources/B16x16_Combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Resources/B16x16_Combined.png -------------------------------------------------------------------------------- /Resources/B16x16_Firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Resources/B16x16_Firefox.png -------------------------------------------------------------------------------- /Resources/B16x16_InternetExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Resources/B16x16_InternetExplorer.png -------------------------------------------------------------------------------- /Resources/B16x16_Opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/Resources/B16x16_Opera.png -------------------------------------------------------------------------------- /WebClientEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/WebClientEx.cs -------------------------------------------------------------------------------- /keepass.version: -------------------------------------------------------------------------------- 1 | : 2 | KeePassBrowserImporter:1.0.9 3 | : 4 | -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassBrowserImporter/HEAD/packages.config --------------------------------------------------------------------------------