Greasy Fork is available in English.

屏蔽cn.bing.com的小冰和底部的菜单

屏蔽国内bing的小冰和底部的菜单

// ==UserScript==
// @name         屏蔽cn.bing.com的小冰和底部的菜单
// @namespace    zhangchengmcbedrock
// @version      1.0
// @description  屏蔽国内bing的小冰和底部的菜单
// @author       zhangchengmcbedrock
// @match        https://cn.bing.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    var footer = document.getElementById("b_footer");
    var image = document.getElementById("ev_min_zo_img");

    if (footer) {
        footer.style.display = "none";
    }

    if (image) {
        image.style.display = "none";
    }
})();