Path: blob/master/scripts/tampermonkey-alternative-method.js
4877 views
// ==UserScript==1// @name Quizizz Cheat2// @source https://github.com/gbaranski/quizizz-cheat3// @namespace http://tampermonkey.net/4// @version 0.15// @description try to take over the world!6// @author gbaranski, PsuperX7// @match https://quizizz.com/*8// @icon https://cf.quizizz.com/img/favicon/favicon-32x32.png9// @require https://gist.githubusercontent.com/BrockA/2625891/raw/9c97aa67ff9c5d56be34a55ad6c18a314e5eb548/waitForKeyElements.js10// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js11// @grant none12// ==/UserScript==1314// We need to wait until the options-container is created!15waitForKeyElements(".options-container", onQuizCreate)16let isQuizCreated = false1718function onQuizCreate() {19if (isQuizCreated) return // Quick fix to ensure script is only loaded once20isQuizCreated = true2122// Start the magic23fetch("https://raw.githubusercontent.com/gbaranski/quizizz-cheat/master/dist/bundle.js")24.then((res) => res.text()25.then((t) => eval(t)))26}272829