flyzy博客
分享便宜VPS与网络优惠
搬瓦工

谷歌搜索全部显示在左边的解决方法

之前看到帖子说信息都跑到左侧。原帖没找到。方法查了下,强迫症的人可以参考下

Google Search shifted all the way to the left side of the screen (laptop) from chrome

tampermonkey

—————————–

// ==UserScript==
// @name         faster google left margin
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  adds left margin to google.com search results
// @author       You
// @match        https://www.google.com/search*
// @exclude      https://www.google.com/search*&tbm=nws*
// @icon         https://www.google.com/s2/favicons?domain=google.com
// @grant        none
// ==/UserScript==

    /*globals $*/
    var top_nav = document.getElementById(“top_nav”); top_nav.setAttribute(“style”, “margin-left:152px;”);
    var slim_appbar = document.getElementById(“slim_appbar”); slim_appbar.setAttribute(“style”, “margin-left:332px;”);
    var center_col = document.getElementById(“center_col”); center_col.setAttribute(“style”, “margin-left:332px;”);
    var rhs = document.getElementById(“rhs”); rhs.setAttribute(“style”, “margin-left:1047px;”);

—————————–

赞(0) 打赏
关注我们
未经允许不得转载:flyzy博客 » 谷歌搜索全部显示在左边的解决方法
分享到: 更多 (0)

这是一种鼓励

支付宝扫一扫打赏

微信扫一扫打赏