Random Search Generator for Microsoft Rewards

Generates random searches and enters them into the Bing search bar on the Microsoft Rewards homepage

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name       Random Search Generator for Microsoft Rewards
// @namespace  http://tampermonkey.net/
// @version    0.1
// @description  Generates random searches and enters them into the Bing search bar on the Microsoft Rewards homepage
// @author     You
// @match      https://www.bing.com/*
// @grant      none
// @license AL 
// ==/UserScript==

(function() {
    'use strict';

        setInterval(function() {
            // Generate a random search query
            var search = generateRandomSearch();
            // Enter the search query into the Bing search bar
            document.getElementById("sb_form_q").value = search;
            // Submit the search
            document.getElementById("sb_form").submit();
        }, 500); // .5 seconds

    function generateRandomSearch() {
        var search = "";
        // Generate a random string of 8 characters
        for (var i = 0; i < 8; i++) {
            // Generate a random number between 0 and 1
            var r = Math.random();
            // If the number is less than 0.5, add a random letter (A-Z) to the search string
            if (r < 0.5) {
                search += String.fromCharCode(Math.floor(Math.random() * 26) + 65);
            }
            // Otherwise, add a random number (0-9) to the search string
            else {
                search += Math.floor(Math.random() * 10);
            }
        }
        return search;
    }
})();