gitextract_3ye_7l94/ ├── .babelrc ├── .gitattributes ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── README.md ├── content/ │ ├── src/ │ │ └── scripts/ │ │ ├── components/ │ │ │ ├── Backdrop/ │ │ │ │ ├── Backdrop.jsx │ │ │ │ ├── index.js │ │ │ │ └── styles.css │ │ │ ├── Loader/ │ │ │ │ ├── Loader.jsx │ │ │ │ ├── index.js │ │ │ │ └── styles.css │ │ │ ├── Pane/ │ │ │ │ ├── Pane.jsx │ │ │ │ ├── index.js │ │ │ │ └── styles.css │ │ │ ├── SVG/ │ │ │ │ ├── SVG.jsx │ │ │ │ ├── assets/ │ │ │ │ │ ├── Branch.jsx │ │ │ │ │ ├── Close.jsx │ │ │ │ │ ├── Half.jsx │ │ │ │ │ ├── Repo.jsx │ │ │ │ │ └── Search.jsx │ │ │ │ └── index.js │ │ │ ├── Toggler/ │ │ │ │ ├── Toggler.jsx │ │ │ │ ├── index.js │ │ │ │ └── styles.css │ │ │ └── TreeItem/ │ │ │ ├── TreeItem.jsx │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── containers/ │ │ │ ├── Resizer/ │ │ │ │ ├── Resizer.jsx │ │ │ │ ├── index.js │ │ │ │ └── styles.css │ │ │ ├── SearchBar/ │ │ │ │ ├── SearchBar.jsx │ │ │ │ ├── SearchBarResult.jsx │ │ │ │ ├── index.js │ │ │ │ └── styles.css │ │ │ ├── TreeList/ │ │ │ │ ├── TreeList.jsx │ │ │ │ ├── index.js │ │ │ │ └── styles.css │ │ │ └── app/ │ │ │ ├── App.css │ │ │ ├── App.jsx │ │ │ └── WebWorker.js │ │ ├── contexts/ │ │ │ └── OptionsContext.js │ │ ├── index.js │ │ ├── libs/ │ │ │ ├── contentDark.js │ │ │ ├── file-icons.css │ │ │ └── gitlab-dark.css │ │ └── utils/ │ │ ├── backgroundColor.js │ │ ├── browser.js │ │ ├── file-icons.js │ │ ├── searchBarWorker.js │ │ ├── styling.js │ │ ├── themeList.js │ │ ├── throttle.js │ │ ├── url.js │ │ └── useEventListener.js │ └── webpack.config.js ├── event/ │ ├── axios.js │ ├── src/ │ │ ├── actions/ │ │ │ ├── API/ │ │ │ │ └── index.js │ │ │ └── UI/ │ │ │ └── index.js │ │ ├── index.js │ │ ├── reducers/ │ │ │ ├── API/ │ │ │ │ ├── searchTerms.js │ │ │ │ └── tree.js │ │ │ ├── UI/ │ │ │ │ ├── clicked.js │ │ │ │ ├── opened.js │ │ │ │ ├── options.js │ │ │ │ ├── pinned.js │ │ │ │ └── width.js │ │ │ └── index.js │ │ └── types/ │ │ ├── API.js │ │ └── UI.js │ └── webpack.config.js ├── gulpfile.babel.js ├── license ├── manifest.json ├── package.json └── popup/ ├── src/ │ ├── index.html │ └── scripts/ │ ├── components/ │ │ ├── app/ │ │ │ ├── App.jsx │ │ │ └── styles.css │ │ └── options/ │ │ ├── index.js │ │ ├── options.jsx │ │ └── styles.css │ └── index.js └── webpack.config.js