调整谷歌搜索中文界面的分页布局,使"下一页"文字显示在箭头下方。既然谷歌不管了,我就让AI写一个脚本优化一下。
// ==UserScript== // @name Google“下一页”布局优化 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 调整谷歌搜索中文界面的分页布局,使"下一页"文字显示在箭头下方。既然谷歌不管了,我就让AI写一个脚本优化一下。 // @author 经本正一 // @match *://www.google.com/search* // @match *://www.google.com.*/search* // @grant none // ==/UserScript== (function() { 'use strict'; // 创建并注入CSS样式 const style = document.createElement('style'); style.textContent = ` #pnnext { display: flex !important; flex-direction: column !important; align-items: center !important; text-decoration: none !important; } #pnnext svg { margin-bottom: 4px !important; } `; document.head.appendChild(style); })();