gitextract_qjeyn6au/ ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public/ │ ├── app/ │ │ ├── menu.js │ │ ├── parse.js │ │ ├── scrape.js │ │ └── server.js │ ├── assets/ │ │ ├── css/ │ │ │ └── fonts.css │ │ └── images/ │ │ └── download.txt │ ├── browser.js │ ├── electron.js │ ├── index.html │ └── manifest.json └── src/ ├── App.js ├── components/ │ ├── AboutWindow.js │ ├── ActionsWindow.js │ ├── Body.js │ ├── Broadcast.js │ ├── ContentWindow.js │ ├── Footer.js │ ├── InformationWIndow.js │ ├── LinksWindow.js │ ├── Navbar.js │ ├── Sidebar.js │ ├── sub-components/ │ │ ├── Chart.js │ │ ├── ChartData.js │ │ ├── CurrentBatteryEstimate.js │ │ ├── KeyValueInformationTable.js │ │ ├── RecentBatteryEstimate.js │ │ └── SidebarRow.js │ └── utils/ │ ├── config.js │ ├── fetcher.js │ ├── liteMode.js │ ├── mainMode.js │ └── openExternalLink.js ├── index.css ├── index.js └── serviceWorker.js