文章目录
- 效果预览
- 脚本
- 使用步骤
- 安装油猴脚本
- 添加脚本
效果预览
脚本
// ==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
添加脚本
- 点击添加脚本。
- 把上面脚本复制粘贴在此处,Ctrl + S 保存。
- 在管理面板看到已启用即可