Greasy Fork is available in English.

Remove Bing Elements

Remove the promotional messaging and clutter from Bing AI (copilot)

// ==UserScript==
// @name         Remove Bing Elements
// @namespace    http://tampermonkey.net/
// @version      1.02
// @description  Remove the promotional messaging and clutter from Bing AI (copilot)
// @author       You
// @match        https://www.bing.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Function to remove elements
    function removeElements() {
        var element1 = document.getElementById('b_sydWelcomeTemplate_');
        if (element1) {
            element1.parentNode.removeChild(element1);
        }

        var element2 = document.getElementById('b_header');
        if (element2) {
            element2.parentNode.removeChild(element2);
        }
    }

    // Continuously attempt to remove the elements
    setInterval(removeElements, 6000);
})();