Greasy Fork

Greasy Fork is available in English.

Bing Rewards Auto-Claimer

Automatically completes Microsoft Bing Rewards activities

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Bing Rewards Auto-Claimer
// @namespace    http://greasyfork.icu/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);

})();