See more without logging into Facebook

This script allows you to see more without logging into Facebook.

当前为 2016-12-09 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name           See more without logging into Facebook
// @namespace      https://greasyfork.org/en/scripts/21627
// @description    This script allows you to see more without logging into Facebook.

// @include        *.facebook.*/*
// @run-at         document-end

// @author         LeoNeeson (my own fork/clone of lukie80 version, all credits to him)
// @copyright      Creative Commons Attribution-ShareAlike 3.0 Unported (CC-BY-SA 3.0)
// @license        http://creativecommons.org/licenses/by-sa/3.0/
// @version        1.1
// @lastupdated    2016.12.08
//
// ==/UserScript==
//-------------------------------------------------------------------------------------------------------------------

if (document.getElementById('pagelet_growth_expanding_cta')){
  document.getElementById('pagelet_growth_expanding_cta').remove();
}
if (document.getElementById('pagelet_page_above_header')){
  document.getElementById('pagelet_page_above_header').remove();
}
if (document.getElementById('u_0_4u')){
  document.getElementById('u_0_4u').remove();
}
if (document.getElementById('u_0_5a')){
  document.getElementById('u_0_5a').remove();
}
if (document.getElementById('u_0_6')){
  document.getElementById('u_0_6').remove();
}

//-------------------------------------------------------------------------------------------------------------------