Greasy Fork

Greasy Fork is available in English.

谷歌搜索结果居中

Center the Google search results.

目前为 2019-02-24 提交的版本,查看 最新版本

// ==UserScript==
// @name         谷歌搜索结果居中
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Center the Google search results.
// @author       GDUFXRT
// @match        https://www.google.com/search*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var style = document.createElement('style');
    var cssStyle = '#searchform .tsf{margin:0 auto}#hdtb-s{display:flex;justify-content:center}.mw{margin:0 auto}#fbar{text-align:center}#topabar{max-width:1197px;margin:0 auto;min-width:1100px}';

    style.innerText = cssStyle;
    document.querySelector('head').appendChild(style);
})();