
// ==UserScript==
// @name bing居中
// @namespace http://tampermonkey.net/
// @version 2024-04-24
// @description try to take over the world!
// @author You
// @match https://cn.bing.com/search?q=*
// @icon https://www.google.com/s2/favicons?sz=64&domain=bing.com
// @run-at document-start
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
// Your code here...
GM_addStyle(`
#b_header {
width: fit-content;
margin: auto;
}
#b_content {
display: flex !important;
justify-content: center !important;
}
#b_dynRail {
width: 0 !important;
}
`);
})();
安装:https://www.tampermonkey.net/index.php


