Suppress Facebook posts

Suppress Facebook posts with short or no post message

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Suppress Facebook posts
// @namespace    https://greasyfork.org/en/users/445779-haanjj
// @version      0.3
// @description  Suppress Facebook posts with short or no post message
// @author       Jeff Haan
// @match        https://www.facebook.com/*
// @require      http://code.jquery.com/jquery-1.11.1.min.js
// @require      https://greasyfork.org/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js?version=115012
// ==/UserScript==

// Facebook posts with no post message or a post message shorter than lengthLimit, are removed from the page
var lengthLimit =100;
var debug = false;

waitForKeyElements (
    "[data-testid~='fbfeed_story']",
    function ( jNode ) {
        'use strict';
        if ($( jNode ).find("div[data-testid='post_message'][class*='userContent'][style!='display: none;']").find("p").length > 0) {
            var post_message = $( jNode ).find("div[data-testid='post_message'][class*='userContent'][style!='display: none;']").find("p")[0].innerText;
            if ( debug ) console.log("POST MESSAGE " + post_message );
            if ( debug ) console.log("POST MESSAGE length"  + post_message.length );
            if ( post_message.length < lengthLimit ) $( jNode ).remove();
        } else {
            if ( debug ) console.log("       No post message!");
            $( jNode ).remove();
        }
    }
);