This user script automatically finds random words from the current search r###lts and searches Bing with them. Additionally, it auto clicks the unclaimed daily points from your rewards dashboard too.
AutoGrind is a powerful and mobile-friendly browser user script designed to automate the process of earning Bing Rewards. By intelligently searching for random words extracted from current search r###lts and auto-clicking unclaimed daily points, AutoGrind maximizes your rewards with minimal effort.
After installation, visit Bing.com or your Bing Rewards dashboard. You'll notice an auto-search icon and a settings icon added to the page. Click on the auto-search icon to start earning rewards automatically or the settings icon to configure the script.
AutoGrind comes with several configurable options:
These settings can be adjusted via the settings overlay, which can be accessed by clicking the settings icon.
The script can detect a special "&form=STARTSCRIPT" parameter in the url which triggers the auto search process automatically.
You can use this to your advantage by setting up a program like Python or AHK (or even the task scheduler) to auto run the script.
Here's a demo of how to do this with Task Scheduler: https://imgur.com/B3PnBb8
And here's an example written in AHK:
; BING-REWARDS
RunBingRewards(paths) {
SplashTextOn, 250, 25, Bing Rewards, Running Bing Rewards...
; Just fill in some random search terms to better randomize searches
searchTerms := ["japan", "cat", "dog", "novels", "anime", "movies", "food", "marvel", "#####", "noodles"]
query := "https://www.bing.com/search?q="
; Generates a random string of 1-5 words randomly
Random, loopCount, 1, 5
Loop % loopCount {
Random, randomIndex, 1, searchTerms.Length()
randomString := searchTerms[randomIndex]
query .= randomString . "%20"
}
query .= "&form=STARTSCRIPT"
; Run each browser and navigate to the generated search url.
for index, path in paths {
Run, %path% %query%
}
SplashTextOff
}
browsers := [".\imports\Microsoft Edge Beta.lnk", ".\imports\Microsoft Edge Dev.lnk", ".\imports\Microsoft Edge.lnk"]
!b::RunBingRewards(browsers)
Contributions are welcome! If you have improvements or bug fixes, please fork the repository and submit a pull request.
AutoGrind is open-source software licensed under the MIT License. See the LICENSE file for more details.
This script is intended for educational purposes only. Use it responsibly and at your own risk. The author is not responsible for any potential consequences of using this script.