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

[复制链接]
查看: 9550   回复: 2
发表于 2021-10-7 22:20:12 | 显示全部楼层 |阅读模式
之前看到帖子说信息都跑到左侧。原帖没找到。方法查了下,强迫症的人可以参考下
https://www.reddit.com/r/chrome/comments/mr4ned/google_search_shifted_all_the_way_to_the_left/

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;");


-----------------------------
回复

使用道具 举报

发表于 2021-10-7 22:20:34 | 显示全部楼层
虽然看不懂,但是还是很谢谢
回复 支持 反对

使用道具 举报

发表于 2021-10-7 22:21:19 | 显示全部楼层
嘎,没有遇到过这种情况,另外你这四行代码完全可以合并为一行代码:
  1. // ==UserScript==// [url=home.php?mod=space&uid=5839]@name[/url]         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// @run-at       document-start// @grant        none// ==/UserScript==(function() {'use strict';    document.lastElementChild.appendChild(document.createElement('style')).textContent = '#top_nav {margin-left:152px !important;} #slim_appbar, #center_col {margin-left:332px !important;} #rhs {margin-left:1047px !important;}';})();
复制代码
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则