├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── answers.json ├── answers_CS.json ├── answers_template.json ├── extension ├── manifest.json └── scripts │ └── calculate.js ├── requirements.txt ├── scrape.py └── screenshot.png /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snooze6214/GateAnswerExtension/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snooze6214/GateAnswerExtension/HEAD/README.md -------------------------------------------------------------------------------- /answers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snooze6214/GateAnswerExtension/HEAD/answers.json -------------------------------------------------------------------------------- /answers_CS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snooze6214/GateAnswerExtension/HEAD/answers_CS.json -------------------------------------------------------------------------------- /answers_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snooze6214/GateAnswerExtension/HEAD/answers_template.json -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snooze6214/GateAnswerExtension/HEAD/extension/manifest.json -------------------------------------------------------------------------------- /extension/scripts/calculate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snooze6214/GateAnswerExtension/HEAD/extension/scripts/calculate.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snooze6214/GateAnswerExtension/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snooze6214/GateAnswerExtension/HEAD/scrape.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snooze6214/GateAnswerExtension/HEAD/screenshot.png --------------------------------------------------------------------------------