├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .zipignore ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── Sources ├── MacPin │ ├── App.swift │ ├── AppDelegate.swift │ ├── AppScriptRuntime.swift │ ├── BrowserViewController.swift │ ├── CocoaShims.swift │ ├── FavIcon.swift │ ├── Generics.swift │ ├── Geolocator.swift │ ├── Prompter.swift │ ├── Retriever.swift │ ├── WebNotifier.swift │ ├── WebView.swift │ ├── WebViewCallbacks.swift │ ├── WebViewController.swift │ └── WebViewDelegates.swift ├── MacPinIOS │ ├── AppDelegateIOS.swift │ ├── ExtsIOS.swift │ ├── MobileBrowserViewController.swift │ ├── WebViewControllerIOS.swift │ ├── WebViewDelegatesIOS.swift │ └── shared ├── MacPinOSX │ ├── AppDelegateOSX.swift │ ├── BrowserViewControllerOSX.swift │ ├── EffectViewController.swift │ ├── FoundationExts.swift │ ├── OmniBoxController.swift │ ├── Services.swift │ ├── StatusBarController.swift │ ├── TabFlowController.swift │ ├── WebViewControllerOSX.swift │ ├── WebViewDelegatesOSX.swift │ ├── WindowController.swift │ └── shared ├── MacPin_static │ └── main.swift └── MacPin_stub │ └── main.swift ├── Tools └── iconify │ ├── iconify.swift │ └── null.swift ├── apple_dev_id.mk ├── dock_screenshot.png ├── eXcode.mk ├── modules ├── JavaScriptCorePrivates │ ├── JSContextRefPrivate.h │ ├── JSContext_Privates.h │ ├── JSRemoteInspector.h │ ├── JSScript.h │ ├── JSScriptRefPrivate.h │ ├── WebKitAvailability.h │ └── module.modulemap ├── Linenoise │ ├── AnsiCodes.swift │ ├── ControlCharacters.swift │ ├── EditState.swift │ ├── Errors.swift │ ├── History.swift │ ├── Package.swift │ ├── Terminal.swift │ └── linenoise.swift ├── UTIKit │ ├── LICENSE │ ├── Package.swift │ ├── README.md │ └── UTI.swift ├── UserNotificationPrivates │ ├── NSUserNotification+Privates.h │ ├── UserNotificationPrivates.h │ └── module.modulemap ├── ViewPrivates │ ├── NSView+Privates.h │ ├── UIView+Privates.h │ ├── ViewPrivates.h │ └── module.modulemap └── WebKitPrivates │ ├── NSTextFinderSPI.h │ ├── WKBase.h │ ├── WKBaseMac.h │ ├── WKBrowsingContextHandle.h │ ├── WKContext.h │ ├── WKContextPrivate.h │ ├── WKData.h │ ├── WKDeclarationSpecifiers.h │ ├── WKDeprecated.h │ ├── WKDictionary.h │ ├── WKDragDestinationAction.h │ ├── WKErrorPrivate.h │ ├── WKErrorRef.h │ ├── WKEvent.h │ ├── WKFrame.h │ ├── WKGeolocationManager.h │ ├── WKGeolocationPermissionRequest.h │ ├── WKGeolocationPosition.h │ ├── WKGeometry.h │ ├── WKHistoryDelegatePrivate.h │ ├── WKInspector.h │ ├── WKInspectorPrivateMac.h │ ├── WKMutableDictionary.h │ ├── WKNativeEvent.h │ ├── WKNavigationActionPrivate.h │ ├── WKNavigationDelegatePrivate.h │ ├── WKNavigationResponsePrivate.h │ ├── WKNotification.h │ ├── WKNotificationManager.h │ ├── WKNotificationPermissionRequest.h │ ├── WKNotificationProvider.h │ ├── WKNumber.h │ ├── WKObject.h │ ├── WKOpenPanelParameters.h │ ├── WKPage.h │ ├── WKPageUIClient.h │ ├── WKPreferencesPrivate.h │ ├── WKPreferencesRefPrivate.h │ ├── WKProcessPoolPrivate.h │ ├── WKReloadFrameErrorRecoveryAttempter.h │ ├── WKSecurityOriginRef.h │ ├── WKString.h │ ├── WKStringCF.h │ ├── WKType.h │ ├── WKUIDelegatePrivate.h │ ├── WKURL.h │ ├── WKURLCF.h │ ├── WKUserContentControllerPrivate.h │ ├── WKView+Privates.h │ ├── WKWebView+Privates.h │ ├── WKWebViewConfigurationPrivate.h │ ├── WKWebsiteDataStoreConfigurationRef.h │ ├── WKWebsiteDataStorePrivate.h │ ├── WKWebsiteDataStoreRef.h │ ├── WebKitAvailability.h │ ├── WebURLsWithTitles.h │ ├── _WKActivatedElementInfo.h │ ├── _WKApplicationManifest.h │ ├── _WKAttachment.h │ ├── _WKDiagnosticLoggingDelegate.h │ ├── _WKDownload.h │ ├── _WKDownloadDelegate.h │ ├── _WKErrorRecoveryAttempting.h │ ├── _WKFindDelegate.h │ ├── _WKFindOptions.h │ ├── _WKFocusedElementInfo.h │ ├── _WKFormInputSession.h │ ├── _WKHitTestResult.h │ ├── _WKIconLoadingDelegate.h │ ├── _WKInputDelegate.h │ ├── _WKInspector.h │ ├── _WKLayoutMode.h │ ├── _WKLinkIconParameters.h │ ├── _WKProcessPoolConfiguration.h │ ├── _WKRenderingProgressEvents.h │ ├── _WKSameDocumentNavigationType.h │ ├── _WKThumbnailView.h │ ├── _WKUserStyleSheet.h │ ├── _WKWebsiteDataStore.h │ ├── _WKWebsiteDataStoreConfiguration.h │ ├── _WKWebsitePolicies.h │ └── module.modulemap ├── sites ├── DevDocs │ ├── app.js │ └── icon.png ├── Facebook │ ├── app.js │ ├── icon.png │ ├── styler.js │ └── unpreloader.js ├── Google_Calendar │ ├── app.js │ └── icon.png ├── Google_Chat │ ├── icon.png │ └── main.js ├── Google_Drive │ ├── app.js │ └── icon.png ├── Google_Maps │ ├── app.js │ └── icon.png ├── Google_Photos │ ├── app.js │ └── icon.png ├── Google_Voice │ ├── icon.png │ └── main.js ├── Hangouts │ ├── app.js │ ├── convopopper.js │ ├── icon.png │ ├── notifier.js │ ├── screenshot.jpg │ ├── style.css │ └── styler.js ├── MacPin │ ├── Library │ │ └── Script Libraries │ │ │ ├── test.jxa │ │ │ └── test.scpt │ ├── dnd.js │ ├── icon.png │ ├── main.js │ ├── media_player.html │ ├── playground.html │ ├── playgroundFrame.html │ ├── repl.html │ ├── seeDebugger.js │ └── thumbs.js ├── Messenger │ ├── app.js │ └── icon.png ├── Slack │ ├── autodark.css │ ├── icon.png │ └── main.js ├── Stack_Overflow │ ├── app.js │ └── icon.png ├── Trello │ ├── 3Dconnexion Config.3dc │ ├── app.js │ ├── icon.png │ ├── navigator.js │ ├── screenshot.jpg │ └── styler.js ├── Twitter │ ├── app.js │ ├── icon.png │ └── unpreloader.js └── WhatsApp │ ├── app.js │ └── icon.png └── templates ├── Resources ├── Credits.rtf ├── Readability.css ├── Readability.js ├── app_injectTab.js ├── app_repl.js ├── browser-util-inspect.js ├── enDarken.css ├── enDarken.js ├── shim_notification_promises.js ├── string-kit-ansi.js ├── string-kit-escape.js └── string-kit-inspect.js ├── framework └── Info-macOS.plist ├── ios ├── Contents.json.appicon ├── Info.plist ├── InfoPlist.strings ├── LaunchScreen.xib └── entitlements.plist ├── macos ├── Info.plist ├── InfoPlist.strings └── entitlements.plist └── xcassets └── iOS └── icons8 ├── toolbar_automatic.png ├── toolbar_back.png ├── toolbar_cancel.png ├── toolbar_delete_file.png ├── toolbar_document.png ├── toolbar_download.png ├── toolbar_download_from_cloud.png ├── toolbar_exit.png ├── toolbar_export.png ├── toolbar_forward.png ├── toolbar_home.png ├── toolbar_import.png ├── toolbar_menu.png ├── toolbar_open_in_browser.png ├── toolbar_search.png ├── toolbar_trash.png ├── toolbar_upload.png ├── toolbar_virtual_machine.png ├── toolbar_zoom_in.png └── toolbar_zoom_out.png /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/.gitignore -------------------------------------------------------------------------------- /.zipignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/.zipignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/README.md -------------------------------------------------------------------------------- /Sources/MacPin/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/App.swift -------------------------------------------------------------------------------- /Sources/MacPin/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/AppDelegate.swift -------------------------------------------------------------------------------- /Sources/MacPin/AppScriptRuntime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/AppScriptRuntime.swift -------------------------------------------------------------------------------- /Sources/MacPin/BrowserViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/BrowserViewController.swift -------------------------------------------------------------------------------- /Sources/MacPin/CocoaShims.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/CocoaShims.swift -------------------------------------------------------------------------------- /Sources/MacPin/FavIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/FavIcon.swift -------------------------------------------------------------------------------- /Sources/MacPin/Generics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/Generics.swift -------------------------------------------------------------------------------- /Sources/MacPin/Geolocator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/Geolocator.swift -------------------------------------------------------------------------------- /Sources/MacPin/Prompter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/Prompter.swift -------------------------------------------------------------------------------- /Sources/MacPin/Retriever.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/Retriever.swift -------------------------------------------------------------------------------- /Sources/MacPin/WebNotifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/WebNotifier.swift -------------------------------------------------------------------------------- /Sources/MacPin/WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/WebView.swift -------------------------------------------------------------------------------- /Sources/MacPin/WebViewCallbacks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/WebViewCallbacks.swift -------------------------------------------------------------------------------- /Sources/MacPin/WebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/WebViewController.swift -------------------------------------------------------------------------------- /Sources/MacPin/WebViewDelegates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin/WebViewDelegates.swift -------------------------------------------------------------------------------- /Sources/MacPinIOS/AppDelegateIOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinIOS/AppDelegateIOS.swift -------------------------------------------------------------------------------- /Sources/MacPinIOS/ExtsIOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinIOS/ExtsIOS.swift -------------------------------------------------------------------------------- /Sources/MacPinIOS/MobileBrowserViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinIOS/MobileBrowserViewController.swift -------------------------------------------------------------------------------- /Sources/MacPinIOS/WebViewControllerIOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinIOS/WebViewControllerIOS.swift -------------------------------------------------------------------------------- /Sources/MacPinIOS/WebViewDelegatesIOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinIOS/WebViewDelegatesIOS.swift -------------------------------------------------------------------------------- /Sources/MacPinIOS/shared: -------------------------------------------------------------------------------- 1 | ../MacPin -------------------------------------------------------------------------------- /Sources/MacPinOSX/AppDelegateOSX.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinOSX/AppDelegateOSX.swift -------------------------------------------------------------------------------- /Sources/MacPinOSX/BrowserViewControllerOSX.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinOSX/BrowserViewControllerOSX.swift -------------------------------------------------------------------------------- /Sources/MacPinOSX/EffectViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinOSX/EffectViewController.swift -------------------------------------------------------------------------------- /Sources/MacPinOSX/FoundationExts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinOSX/FoundationExts.swift -------------------------------------------------------------------------------- /Sources/MacPinOSX/OmniBoxController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinOSX/OmniBoxController.swift -------------------------------------------------------------------------------- /Sources/MacPinOSX/Services.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinOSX/Services.swift -------------------------------------------------------------------------------- /Sources/MacPinOSX/StatusBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinOSX/StatusBarController.swift -------------------------------------------------------------------------------- /Sources/MacPinOSX/TabFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinOSX/TabFlowController.swift -------------------------------------------------------------------------------- /Sources/MacPinOSX/WebViewControllerOSX.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinOSX/WebViewControllerOSX.swift -------------------------------------------------------------------------------- /Sources/MacPinOSX/WebViewDelegatesOSX.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinOSX/WebViewDelegatesOSX.swift -------------------------------------------------------------------------------- /Sources/MacPinOSX/WindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPinOSX/WindowController.swift -------------------------------------------------------------------------------- /Sources/MacPinOSX/shared: -------------------------------------------------------------------------------- 1 | ../MacPin -------------------------------------------------------------------------------- /Sources/MacPin_static/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin_static/main.swift -------------------------------------------------------------------------------- /Sources/MacPin_stub/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Sources/MacPin_stub/main.swift -------------------------------------------------------------------------------- /Tools/iconify/iconify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/Tools/iconify/iconify.swift -------------------------------------------------------------------------------- /Tools/iconify/null.swift: -------------------------------------------------------------------------------- 1 | // empty file to workaround https://bugs.swift.org/browse/SR-12683 2 | -------------------------------------------------------------------------------- /apple_dev_id.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/apple_dev_id.mk -------------------------------------------------------------------------------- /dock_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/dock_screenshot.png -------------------------------------------------------------------------------- /eXcode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/eXcode.mk -------------------------------------------------------------------------------- /modules/JavaScriptCorePrivates/JSContextRefPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/JavaScriptCorePrivates/JSContextRefPrivate.h -------------------------------------------------------------------------------- /modules/JavaScriptCorePrivates/JSContext_Privates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/JavaScriptCorePrivates/JSContext_Privates.h -------------------------------------------------------------------------------- /modules/JavaScriptCorePrivates/JSRemoteInspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/JavaScriptCorePrivates/JSRemoteInspector.h -------------------------------------------------------------------------------- /modules/JavaScriptCorePrivates/JSScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/JavaScriptCorePrivates/JSScript.h -------------------------------------------------------------------------------- /modules/JavaScriptCorePrivates/JSScriptRefPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/JavaScriptCorePrivates/JSScriptRefPrivate.h -------------------------------------------------------------------------------- /modules/JavaScriptCorePrivates/WebKitAvailability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/JavaScriptCorePrivates/WebKitAvailability.h -------------------------------------------------------------------------------- /modules/JavaScriptCorePrivates/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/JavaScriptCorePrivates/module.modulemap -------------------------------------------------------------------------------- /modules/Linenoise/AnsiCodes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/Linenoise/AnsiCodes.swift -------------------------------------------------------------------------------- /modules/Linenoise/ControlCharacters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/Linenoise/ControlCharacters.swift -------------------------------------------------------------------------------- /modules/Linenoise/EditState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/Linenoise/EditState.swift -------------------------------------------------------------------------------- /modules/Linenoise/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/Linenoise/Errors.swift -------------------------------------------------------------------------------- /modules/Linenoise/History.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/Linenoise/History.swift -------------------------------------------------------------------------------- /modules/Linenoise/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/Linenoise/Package.swift -------------------------------------------------------------------------------- /modules/Linenoise/Terminal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/Linenoise/Terminal.swift -------------------------------------------------------------------------------- /modules/Linenoise/linenoise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/Linenoise/linenoise.swift -------------------------------------------------------------------------------- /modules/UTIKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/UTIKit/LICENSE -------------------------------------------------------------------------------- /modules/UTIKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/UTIKit/Package.swift -------------------------------------------------------------------------------- /modules/UTIKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/UTIKit/README.md -------------------------------------------------------------------------------- /modules/UTIKit/UTI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/UTIKit/UTI.swift -------------------------------------------------------------------------------- /modules/UserNotificationPrivates/NSUserNotification+Privates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/UserNotificationPrivates/NSUserNotification+Privates.h -------------------------------------------------------------------------------- /modules/UserNotificationPrivates/UserNotificationPrivates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/UserNotificationPrivates/UserNotificationPrivates.h -------------------------------------------------------------------------------- /modules/UserNotificationPrivates/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/UserNotificationPrivates/module.modulemap -------------------------------------------------------------------------------- /modules/ViewPrivates/NSView+Privates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/ViewPrivates/NSView+Privates.h -------------------------------------------------------------------------------- /modules/ViewPrivates/UIView+Privates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/ViewPrivates/UIView+Privates.h -------------------------------------------------------------------------------- /modules/ViewPrivates/ViewPrivates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/ViewPrivates/ViewPrivates.h -------------------------------------------------------------------------------- /modules/ViewPrivates/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/ViewPrivates/module.modulemap -------------------------------------------------------------------------------- /modules/WebKitPrivates/NSTextFinderSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/NSTextFinderSPI.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKBase.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKBaseMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKBaseMac.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKBrowsingContextHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKBrowsingContextHandle.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKContext.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKContextPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKContextPrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKData.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKDeclarationSpecifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKDeclarationSpecifiers.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKDeprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKDeprecated.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKDictionary.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKDragDestinationAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKDragDestinationAction.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKErrorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKErrorPrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKErrorRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKErrorRef.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKEvent.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKFrame.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKGeolocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKGeolocationManager.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKGeolocationPermissionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKGeolocationPermissionRequest.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKGeolocationPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKGeolocationPosition.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKGeometry.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKHistoryDelegatePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKHistoryDelegatePrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKInspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKInspector.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKInspectorPrivateMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKInspectorPrivateMac.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKMutableDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKMutableDictionary.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKNativeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKNativeEvent.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKNavigationActionPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKNavigationActionPrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKNavigationDelegatePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKNavigationDelegatePrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKNavigationResponsePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKNavigationResponsePrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKNotification.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKNotificationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKNotificationManager.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKNotificationPermissionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKNotificationPermissionRequest.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKNotificationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKNotificationProvider.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKNumber.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKObject.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKOpenPanelParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKOpenPanelParameters.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKPage.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKPageUIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKPageUIClient.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKPreferencesPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKPreferencesPrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKPreferencesRefPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKPreferencesRefPrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKProcessPoolPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKProcessPoolPrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKReloadFrameErrorRecoveryAttempter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKReloadFrameErrorRecoveryAttempter.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKSecurityOriginRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKSecurityOriginRef.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKString.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKStringCF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKStringCF.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKType.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKUIDelegatePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKUIDelegatePrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKURL.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKURLCF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKURLCF.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKUserContentControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKUserContentControllerPrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKView+Privates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKView+Privates.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKWebView+Privates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKWebView+Privates.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKWebViewConfigurationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKWebViewConfigurationPrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKWebsiteDataStoreConfigurationRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKWebsiteDataStoreConfigurationRef.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKWebsiteDataStorePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKWebsiteDataStorePrivate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WKWebsiteDataStoreRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WKWebsiteDataStoreRef.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WebKitAvailability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WebKitAvailability.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/WebURLsWithTitles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/WebURLsWithTitles.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKActivatedElementInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKActivatedElementInfo.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKApplicationManifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKApplicationManifest.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKAttachment.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKDiagnosticLoggingDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKDiagnosticLoggingDelegate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKDownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKDownload.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKDownloadDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKDownloadDelegate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKErrorRecoveryAttempting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKErrorRecoveryAttempting.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKFindDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKFindDelegate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKFindOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKFindOptions.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKFocusedElementInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKFocusedElementInfo.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKFormInputSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKFormInputSession.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKHitTestResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKHitTestResult.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKIconLoadingDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKIconLoadingDelegate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKInputDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKInputDelegate.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKInspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKInspector.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKLayoutMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKLayoutMode.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKLinkIconParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKLinkIconParameters.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKProcessPoolConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKProcessPoolConfiguration.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKRenderingProgressEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKRenderingProgressEvents.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKSameDocumentNavigationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKSameDocumentNavigationType.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKThumbnailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKThumbnailView.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKUserStyleSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKUserStyleSheet.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKWebsiteDataStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKWebsiteDataStore.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKWebsiteDataStoreConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKWebsiteDataStoreConfiguration.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/_WKWebsitePolicies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/_WKWebsitePolicies.h -------------------------------------------------------------------------------- /modules/WebKitPrivates/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/modules/WebKitPrivates/module.modulemap -------------------------------------------------------------------------------- /sites/DevDocs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/DevDocs/app.js -------------------------------------------------------------------------------- /sites/DevDocs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/DevDocs/icon.png -------------------------------------------------------------------------------- /sites/Facebook/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Facebook/app.js -------------------------------------------------------------------------------- /sites/Facebook/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Facebook/icon.png -------------------------------------------------------------------------------- /sites/Facebook/styler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Facebook/styler.js -------------------------------------------------------------------------------- /sites/Facebook/unpreloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Facebook/unpreloader.js -------------------------------------------------------------------------------- /sites/Google_Calendar/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Calendar/app.js -------------------------------------------------------------------------------- /sites/Google_Calendar/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Calendar/icon.png -------------------------------------------------------------------------------- /sites/Google_Chat/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Chat/icon.png -------------------------------------------------------------------------------- /sites/Google_Chat/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Chat/main.js -------------------------------------------------------------------------------- /sites/Google_Drive/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Drive/app.js -------------------------------------------------------------------------------- /sites/Google_Drive/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Drive/icon.png -------------------------------------------------------------------------------- /sites/Google_Maps/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Maps/app.js -------------------------------------------------------------------------------- /sites/Google_Maps/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Maps/icon.png -------------------------------------------------------------------------------- /sites/Google_Photos/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Photos/app.js -------------------------------------------------------------------------------- /sites/Google_Photos/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Photos/icon.png -------------------------------------------------------------------------------- /sites/Google_Voice/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Voice/icon.png -------------------------------------------------------------------------------- /sites/Google_Voice/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Google_Voice/main.js -------------------------------------------------------------------------------- /sites/Hangouts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Hangouts/app.js -------------------------------------------------------------------------------- /sites/Hangouts/convopopper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Hangouts/convopopper.js -------------------------------------------------------------------------------- /sites/Hangouts/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Hangouts/icon.png -------------------------------------------------------------------------------- /sites/Hangouts/notifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Hangouts/notifier.js -------------------------------------------------------------------------------- /sites/Hangouts/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Hangouts/screenshot.jpg -------------------------------------------------------------------------------- /sites/Hangouts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Hangouts/style.css -------------------------------------------------------------------------------- /sites/Hangouts/styler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Hangouts/styler.js -------------------------------------------------------------------------------- /sites/MacPin/Library/Script Libraries/test.jxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/MacPin/Library/Script Libraries/test.jxa -------------------------------------------------------------------------------- /sites/MacPin/Library/Script Libraries/test.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/MacPin/Library/Script Libraries/test.scpt -------------------------------------------------------------------------------- /sites/MacPin/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/MacPin/dnd.js -------------------------------------------------------------------------------- /sites/MacPin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/MacPin/icon.png -------------------------------------------------------------------------------- /sites/MacPin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/MacPin/main.js -------------------------------------------------------------------------------- /sites/MacPin/media_player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/MacPin/media_player.html -------------------------------------------------------------------------------- /sites/MacPin/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/MacPin/playground.html -------------------------------------------------------------------------------- /sites/MacPin/playgroundFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/MacPin/playgroundFrame.html -------------------------------------------------------------------------------- /sites/MacPin/repl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/MacPin/repl.html -------------------------------------------------------------------------------- /sites/MacPin/seeDebugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/MacPin/seeDebugger.js -------------------------------------------------------------------------------- /sites/MacPin/thumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/MacPin/thumbs.js -------------------------------------------------------------------------------- /sites/Messenger/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Messenger/app.js -------------------------------------------------------------------------------- /sites/Messenger/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Messenger/icon.png -------------------------------------------------------------------------------- /sites/Slack/autodark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Slack/autodark.css -------------------------------------------------------------------------------- /sites/Slack/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Slack/icon.png -------------------------------------------------------------------------------- /sites/Slack/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Slack/main.js -------------------------------------------------------------------------------- /sites/Stack_Overflow/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Stack_Overflow/app.js -------------------------------------------------------------------------------- /sites/Stack_Overflow/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Stack_Overflow/icon.png -------------------------------------------------------------------------------- /sites/Trello/3Dconnexion Config.3dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Trello/3Dconnexion Config.3dc -------------------------------------------------------------------------------- /sites/Trello/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Trello/app.js -------------------------------------------------------------------------------- /sites/Trello/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Trello/icon.png -------------------------------------------------------------------------------- /sites/Trello/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Trello/navigator.js -------------------------------------------------------------------------------- /sites/Trello/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Trello/screenshot.jpg -------------------------------------------------------------------------------- /sites/Trello/styler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Trello/styler.js -------------------------------------------------------------------------------- /sites/Twitter/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Twitter/app.js -------------------------------------------------------------------------------- /sites/Twitter/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Twitter/icon.png -------------------------------------------------------------------------------- /sites/Twitter/unpreloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/Twitter/unpreloader.js -------------------------------------------------------------------------------- /sites/WhatsApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/WhatsApp/app.js -------------------------------------------------------------------------------- /sites/WhatsApp/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/sites/WhatsApp/icon.png -------------------------------------------------------------------------------- /templates/Resources/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/Credits.rtf -------------------------------------------------------------------------------- /templates/Resources/Readability.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/Readability.css -------------------------------------------------------------------------------- /templates/Resources/Readability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/Readability.js -------------------------------------------------------------------------------- /templates/Resources/app_injectTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/app_injectTab.js -------------------------------------------------------------------------------- /templates/Resources/app_repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/app_repl.js -------------------------------------------------------------------------------- /templates/Resources/browser-util-inspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/browser-util-inspect.js -------------------------------------------------------------------------------- /templates/Resources/enDarken.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/enDarken.css -------------------------------------------------------------------------------- /templates/Resources/enDarken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/enDarken.js -------------------------------------------------------------------------------- /templates/Resources/shim_notification_promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/shim_notification_promises.js -------------------------------------------------------------------------------- /templates/Resources/string-kit-ansi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/string-kit-ansi.js -------------------------------------------------------------------------------- /templates/Resources/string-kit-escape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/string-kit-escape.js -------------------------------------------------------------------------------- /templates/Resources/string-kit-inspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/Resources/string-kit-inspect.js -------------------------------------------------------------------------------- /templates/framework/Info-macOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/framework/Info-macOS.plist -------------------------------------------------------------------------------- /templates/ios/Contents.json.appicon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/ios/Contents.json.appicon -------------------------------------------------------------------------------- /templates/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/ios/Info.plist -------------------------------------------------------------------------------- /templates/ios/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | ../macos/InfoPlist.strings -------------------------------------------------------------------------------- /templates/ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/ios/LaunchScreen.xib -------------------------------------------------------------------------------- /templates/ios/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/ios/entitlements.plist -------------------------------------------------------------------------------- /templates/macos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/macos/Info.plist -------------------------------------------------------------------------------- /templates/macos/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/macos/InfoPlist.strings -------------------------------------------------------------------------------- /templates/macos/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/macos/entitlements.plist -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_automatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_automatic.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_back.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_cancel.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_delete_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_delete_file.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_document.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_download.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_download_from_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_download_from_cloud.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_exit.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_export.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_forward.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_home.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_import.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_menu.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_open_in_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_open_in_browser.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_search.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_trash.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_upload.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_virtual_machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_virtual_machine.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_zoom_in.png -------------------------------------------------------------------------------- /templates/xcassets/iOS/icons8/toolbar_zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfix/MacPin/HEAD/templates/xcassets/iOS/icons8/toolbar_zoom_out.png --------------------------------------------------------------------------------