NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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)();