Skip to content

Instantly share code, notes, and snippets.

@dmn001
Created December 2, 2021 16:14
Show Gist options
  • Save dmn001/d6eb2ccb69a767e9fa79e28bfd9cee34 to your computer and use it in GitHub Desktop.
Save dmn001/d6eb2ccb69a767e9fa79e28bfd9cee34 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Bing Rewards Supersonic Quiz Clicker
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.bing.com/*
// @icon https://www.google.com/s2/favicons?domain=bing.com
// @grant none
// ==/UserScript==
const correct_options = document.querySelectorAll("[iscorrectoption='True']");
try{
for (var i in correct_options) {
correct_options[i].style.color = '#00FF00';
}
} catch {}
(function () {
var monitor = function () {
try {
for (i in correct_options){
console.log("pressing i" + i);
correct_options[i].click();
}
} catch {}
};
window.setInterval(monitor, 1000);
})();
@Mishasama
Copy link

Hello, is there possible to use scripts for other quizzes?

@dmn001
Copy link
Author

dmn001 commented Nov 3, 2022

Hi @Mishasama , thanks for your interest, but there are no plans to update this script for other quizzes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment