gitextract_8wwg7s1f/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── sentinel.yml ├── .gitignore ├── .node-version ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── README.md ├── assets/ │ ├── app-icon/ │ │ └── mac/ │ │ └── app.icns │ ├── code-blocks.js │ ├── css/ │ │ ├── about.css │ │ ├── demo.css │ │ ├── fonts/ │ │ │ ├── SourceSansPro-Black.otf │ │ │ ├── SourceSansPro-BlackIt.otf │ │ │ ├── SourceSansPro-Bold.otf │ │ │ ├── SourceSansPro-BoldIt.otf │ │ │ ├── SourceSansPro-ExtraLight.otf │ │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ │ ├── SourceSansPro-It.otf │ │ │ ├── SourceSansPro-Light.otf │ │ │ ├── SourceSansPro-LightIt.otf │ │ │ ├── SourceSansPro-Regular.otf │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ └── SourceSansPro-SemiboldIt.otf │ │ ├── github.css │ │ ├── global.css │ │ ├── nativize.css │ │ ├── nav.css │ │ ├── print.css │ │ ├── section.css │ │ └── variables.css │ ├── demo-btns.js │ ├── ex-links.js │ ├── imports.js │ ├── mac/ │ │ ├── child.plist │ │ ├── info.plist │ │ └── parent.plist │ ├── nav.js │ └── normalize-shortcuts.js ├── cli.js ├── docs.md ├── index.html ├── license.md ├── main-process/ │ ├── communication/ │ │ ├── async-msg.js │ │ └── sync-msg.js │ ├── menus/ │ │ ├── application-menu.js │ │ ├── context-menu.js │ │ └── shortcuts.js │ ├── native-ui/ │ │ ├── dialogs/ │ │ │ ├── error.js │ │ │ ├── information.js │ │ │ ├── open-file.js │ │ │ └── save.js │ │ ├── drag/ │ │ │ └── drag.js │ │ └── tray/ │ │ └── tray.js │ └── system/ │ ├── app-information.js │ └── protocol-handler.js ├── main.js ├── package.json ├── renderer-process/ │ ├── communication/ │ │ ├── async-msg.js │ │ ├── invisible-msg.js │ │ └── sync-msg.js │ ├── media/ │ │ └── desktop-capturer.js │ ├── menus/ │ │ └── context-menu.js │ ├── native-ui/ │ │ ├── dialogs/ │ │ │ ├── error.js │ │ │ ├── information.js │ │ │ ├── open-file.js │ │ │ └── save.js │ │ ├── drag/ │ │ │ └── drag.js │ │ ├── ex-links-file-manager/ │ │ │ ├── ex-links.js │ │ │ └── file-manager.js │ │ ├── notifications/ │ │ │ ├── advanced-notification.js │ │ │ └── basic-notification.js │ │ └── tray/ │ │ └── tray.js │ ├── system/ │ │ ├── app-information.js │ │ ├── copy.js │ │ ├── paste.js │ │ ├── protocol-handler.js │ │ ├── screen-information.js │ │ ├── sys-information.js │ │ └── version-information.js │ └── windows/ │ ├── create-window.js │ ├── frameless-window.js │ ├── manage-window.js │ ├── process-crash.js │ ├── process-hang.js │ └── using-window-events.js ├── script/ │ ├── installer.js │ ├── mas.sh │ ├── release.js │ └── windows-store.js ├── sections/ │ ├── about.html │ ├── communication/ │ │ ├── invisible.html │ │ └── ipc.html │ ├── media/ │ │ └── desktop-capturer.html │ ├── menus/ │ │ ├── menus.html │ │ └── shortcuts.html │ ├── native-ui/ │ │ ├── dialogs.html │ │ ├── drag.html │ │ ├── ex-links-file-manager.html │ │ ├── notifications.html │ │ └── tray.html │ ├── system/ │ │ ├── app-sys-information.html │ │ ├── clipboard.html │ │ ├── protocol-handler.html │ │ └── protocol-link.html │ └── windows/ │ ├── crash-hang.html │ ├── manage-modal.html │ ├── modal-toggle-visibility.html │ ├── modal.html │ ├── process-crash.html │ ├── process-hang.html │ └── windows.html └── test/ ├── index.js └── setup.js