├── LICENSE └── parse-browser-history ├── Package.swift ├── README.md ├── Sources └── parse-browser-history │ └── main.swift ├── Tests ├── LinuxMain.swift └── parse-browser-historyTests │ ├── XCTestManifests.swift │ └── parse_browser_historyTests.swift ├── compiled-historyparser ├── parse-browser-history.xcodeproj ├── parse_browser_historyTests_Info.plist ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── redteam.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcshareddata │ └── xcschemes │ ├── parse-browser-history-Package.xcscheme │ └── parse-browser-history.xcscheme └── usage.jpeg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /parse-browser-history/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/Package.swift -------------------------------------------------------------------------------- /parse-browser-history/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/README.md -------------------------------------------------------------------------------- /parse-browser-history/Sources/parse-browser-history/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/Sources/parse-browser-history/main.swift -------------------------------------------------------------------------------- /parse-browser-history/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /parse-browser-history/Tests/parse-browser-historyTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/Tests/parse-browser-historyTests/XCTestManifests.swift -------------------------------------------------------------------------------- /parse-browser-history/Tests/parse-browser-historyTests/parse_browser_historyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/Tests/parse-browser-historyTests/parse_browser_historyTests.swift -------------------------------------------------------------------------------- /parse-browser-history/compiled-historyparser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/compiled-historyparser -------------------------------------------------------------------------------- /parse-browser-history/parse-browser-history.xcodeproj/parse_browser_historyTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/parse-browser-history.xcodeproj/parse_browser_historyTests_Info.plist -------------------------------------------------------------------------------- /parse-browser-history/parse-browser-history.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/parse-browser-history.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /parse-browser-history/parse-browser-history.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/parse-browser-history.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /parse-browser-history/parse-browser-history.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/parse-browser-history.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /parse-browser-history/parse-browser-history.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/parse-browser-history.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /parse-browser-history/parse-browser-history.xcodeproj/project.xcworkspace/xcuserdata/redteam.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/parse-browser-history.xcodeproj/project.xcworkspace/xcuserdata/redteam.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /parse-browser-history/parse-browser-history.xcodeproj/xcshareddata/xcschemes/parse-browser-history-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/parse-browser-history.xcodeproj/xcshareddata/xcschemes/parse-browser-history-Package.xcscheme -------------------------------------------------------------------------------- /parse-browser-history/parse-browser-history.xcodeproj/xcshareddata/xcschemes/parse-browser-history.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/parse-browser-history.xcodeproj/xcshareddata/xcschemes/parse-browser-history.xcscheme -------------------------------------------------------------------------------- /parse-browser-history/usage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedowens/macOS-browserhist-parser/HEAD/parse-browser-history/usage.jpeg --------------------------------------------------------------------------------