您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
调整谷歌搜索中文界面的分页布局,使"下一页"文字显示在箭头下方。既然谷歌不管了,我就让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); })();