vishalbty / Bing quiz

// ==UserScript==
// @name         Bing quiz
// @namespace    *.bing.com/
// @version      0.1
// @description  Solve bing quiz
// @author       You
// @license MIT
// @match        https://*.bing.com/*
// @match        http://*.bing.com/*
// @grant        none
// ==/UserScript==

setInterval(function(click) {
    document.getElementById('rqAnswerOption0').click();
    document.getElementById('rqAnswerOption1').click();
    document.getElementById('rqAnswerOption2').click();
    document.getElementById('rqAnswerOption3').click();
}, 100)();