您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically completes Microsoft Bing Rewards activities
// ==UserScript== // @name Bing Rewards Auto-Claimer // @namespace https://greasyfork.org/en/users/1444872-tlbstation // @version 2.0 // @description Automatically completes Microsoft Bing Rewards activities // @author TLBSTATION // @match *://rewards.bing.com/* // @icon https://rewards.bing.com/rewards.png // @grant none // @run-at document-idle // @license MIT // ==/UserScript== (function () { 'use strict'; function clickButtons() { console.log("🔄 Scanning for Bing Rewards activities..."); // Select and click all available "Earn" buttons const earnButtons = document.querySelectorAll('a[href*="dashboard"], a[href*="url"]'); earnButtons.forEach(btn => { if (btn.innerText.includes("Earn") || btn.innerText.includes("Complete") || btn.innerText.includes("Take Quiz")) { console.log("✅ Clicking:", btn.innerText); btn.click(); //setTimeout(() => location.reload(), 5000); // Refresh after 5 sec } }); // Click on daily quiz or polls document.querySelectorAll('.mee-icon-AddMedium, .mee-icon-CheckMarkMedium').forEach(btn => { console.log("🎯 Completing daily activity..."); btn.click(); }); } // Auto-run the function every few seconds setInterval(clickButtons, 5000); })();