// ==UserScript== // @name 移除必应搜索结果鼠标移入出现的放大模糊 // @namespace https://bbs.tampermonkey.net.cn/ // @version 0.1.0 // @description try to take over the world! // @author You // @match https://cn.bing.com/* // ==/UserScript== (function () { 'use strict'; let dom = document.querySelectorAll(".b_algoHover"); dom.forEach(ele => { ele.style.transform = "scale(1)" ele.style.transition= "all .3s ease 0s"; }) // Your code here... })();