gitextract_irjtamld/ ├── .browserslistrc ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── label-actions.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── ci.yml │ ├── label-actions.yml │ └── lockdown.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── gulpfile.js ├── package.json ├── postcss.config.js ├── secrets.json.example ├── src/ │ ├── assets/ │ │ ├── fonts/ │ │ │ └── roboto.css │ │ ├── locales/ │ │ │ └── en/ │ │ │ ├── messages-firefox.json │ │ │ └── messages.json │ │ └── manifest/ │ │ ├── chrome.json │ │ ├── edge.json │ │ ├── firefox.json │ │ └── opera.json │ ├── background/ │ │ ├── index.html │ │ └── main.js │ ├── base/ │ │ ├── main.js │ │ ├── solver-button.css │ │ └── style.css │ ├── contribute/ │ │ ├── App.vue │ │ ├── index.html │ │ └── main.js │ ├── offscreen/ │ │ ├── index.html │ │ └── main.js │ ├── options/ │ │ ├── App.vue │ │ ├── index.html │ │ └── main.js │ ├── scripts/ │ │ ├── init-setup.js │ │ └── reset.js │ ├── setup/ │ │ ├── App.vue │ │ ├── index.html │ │ └── main.js │ ├── storage/ │ │ ├── config.json │ │ ├── init.js │ │ ├── revisions/ │ │ │ ├── local/ │ │ │ │ ├── 20221211221603_add_theme_support.js │ │ │ │ ├── 20221214080901_update_services.js │ │ │ │ ├── 20240514170322_add_appversion.js │ │ │ │ ├── DlgF14Chrh.js │ │ │ │ ├── Lj3MYlSr4L.js │ │ │ │ ├── ONiJBs00o.js │ │ │ │ ├── UidMDYaYA.js │ │ │ │ ├── UoT3kGyBH.js │ │ │ │ ├── X3djS8vZC.js │ │ │ │ ├── ZtLMLoh1ag.js │ │ │ │ ├── nOedd0Txqd.js │ │ │ │ └── t335iRDhZ8.js │ │ │ └── session/ │ │ │ └── 20240514122825_initial_version.js │ │ └── storage.js │ └── utils/ │ ├── app.js │ ├── common.js │ ├── config.js │ ├── data.js │ └── vuetify.js └── webpack.config.js