Skip to content

kubajak/quizizz-cheat

 
 

Repository files navigation

quizizz-cheat

There are two method of retrieving answers

Methods

Fetching Quizizz API

Should work in Test and Classic mode.

  1. Join Quiz
  2. Open console and paste this
fetch("https://raw.githubusercontent.com/gbaranski/quizizz-cheat/master/dist/bundle.js")
.then((res) => res.text()
.then((t) => eval(t)))
  1. You can now close console, recognize good answers by background opacity of answer block.

Sending answers as someone else

This works in different way, instead of fetching Quizizz API it sends answer to current question as someone else, Quizizz returns valid answer in response to submission.

  1. Join quiz, wait for first question and open console
  2. Paste this code to console
fetch("https://raw.githubusercontent.com/gbaranski/quizizz-cheat/oldmethod/dist/bundle.js")
.then((res) => res.text()
.then((t) => eval(t)))
  1. Enter user name of any player(he won't get points even if he sent valid answer).
  2. Go to step 2

As we can see on this screenshot, anwser www.quizizz.com has highest opacity, that means its valid screenshot

About

Cheat for https://quizizz.com to get all correct answers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 89.4%
  • JavaScript 10.6%