CSS: www.facebook.com - font Segoe UI

Corrections to UI of new Facebook for desktop browsers: font Segoe UI, bigger text size

当前为 2021-01-04 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name          CSS: www.facebook.com - font Segoe UI
// @description   Corrections to UI of new Facebook for desktop browsers: font Segoe UI, bigger text size
// @author        MK
// @homepage      https://greasyfork.org/en/scripts/419623
// @namespace     https://greasyfork.org/users/309172
// @include       https://www.facebook.com/*
// @include       http://ww.facebook.com/*
// @version       1.0
// @note          v1.0 2021-01-04 - initial release
// ==/UserScript==
 
(function() {
  var css = `
  /*Global text*/
  body, .jq4qci2q, .qzhwtbm6 > .a8c37x1j > .c1et5uql {
    font-family: "Segoe UI", Arial, Roboto, Helvetica, sans-serif !important;
    font-size: 15px !important;
  }

  /*Author*/
  .l94mrbxd {
    font-family: "Segoe UI", Arial, Roboto, Helvetica, sans-serif !important;
    font-size: 15.5px !important;
  }

  /*Preview text*/
  .qzhwtbm6 > .a8c37x1j, .bi6gxh9e > .e9vueds3 {
    font-family: "Segoe UI", Arial, Roboto, Helvetica, sans-serif !important;
    font-size: 13.5px !important;
  }

  /*Likes, comments, shares*/
  .l9j0dhe7 > .m9osqain {
    font-family: "Segoe UI", Arial, Roboto, Helvetica, sans-serif !important;
    font-size: 13.5px !important;
  }

  /*Comment author*/
  .e9vueds3 {
    font-family: "Segoe UI", Arial, Roboto, Helvetica, sans-serif !important;
    font-size: 14.5px !important;
  }

  /*Comment text*/
  .ecm0bbzt > .jq4qci2q, ._71pn ._4w79 {
    font-family: "Segoe UI", Arial, Roboto, Helvetica, sans-serif !important;
    font-size: 14.5px !important;
  }

  /*Replies to comment, menu at left, list of contacts at right*/
  .hpfvmrgz > .rq0escxv {
    font-family: "Segoe UI", Arial, Roboto, Helvetica, sans-serif !important;
    font-size: 13.5px !important;
  }

  /*Number of likes under comment*/
  .bp9cbjyn > .e9vueds3 {
    font-size: 12px !important;
  }
  .bp9cbjyn > .qt6c0cv9 {
    padding-bottom: 2px;
  }

  /*Remove limit on height of underpicture text*/
  .r9c01rrb {
    max-height: none !important;
  }
  `;

  if (typeof GM_addStyle != 'undefined') {
    GM_addStyle(css);
  } else if (typeof PRO_addStyle != 'undefined') {
    PRO_addStyle(css);
  } else if (typeof addStyle != 'undefined') {
    addStyle(css);
  } else {
    var node = document.createElement('style');
    node.type = 'text/css';
    node.appendChild(document.createTextNode(css));
    document.documentElement.appendChild(node);
  }
})();