Simply skips the long and boring break between every question on quizdiva.net
< Feedback on QuizDiva skip break
// ==UserScript==// @name QuizDiva skip break// @namespace https://bblok.tech/// @version 1.1// @description Simply skips the long and boring break between every question on quizdiva.net// @author Theblockbuster1// @match https://quizdiva.net/*/questions/break*// @match http://quizdiva.net/*/questions/break*// @match https://bequizzed.com/*/questions/break* <----- Add // @match http://bequizzed.com/*/questions/break* <----- Add// @grant none// ==/UserScript==$('#nextbutton').trigger('click');Can you make a quiz script that uses 1 algorithm without alternative answers?Example "Click" --> "A"(answer) --> "Click"(intermediate page) --> "C" --> "Click" --> "B" --> "Click" --> "D" --> ....
उत्तर पोस्ट करण्यासाठी साइन इन करा.
// ==UserScript==
// @name QuizDiva skip break
// @namespace https://bblok.tech/
// @version 1.1
// @description Simply skips the long and boring break between every question on quizdiva.net
// @author Theblockbuster1
// @match https://quizdiva.net/*/questions/break*
// @match http://quizdiva.net/*/questions/break*
// @match https://bequizzed.com/*/questions/break* <----- Add
// @match http://bequizzed.com/*/questions/break* <----- Add
// @grant none
// ==/UserScript==
$('#nextbutton').trigger('click');
Can you make a quiz script that uses 1 algorithm without alternative answers?
Example "Click" --> "A"(answer) --> "Click"(intermediate page) --> "C" --> "Click" --> "B" --> "Click" --> "D" --> ....