UpYoursFB

Remove 'Suggested Post, Suggested Offer'

Tính đến 17-06-2017. Xem phiên bản mới nhất.

// ==UserScript==
// @name        UpYoursFB
// @namespace   upyoursfb
// @description Remove 'Suggested Post, Suggested Offer'
// @include     *://*.facebook.com/*
// @require     https://code.jquery.com/jquery-3.2.1.min.js
// @version     1.6
// @grant       none
// ==/UserScript==

$(document).ready(function(){
    var upyours = ['Suggested Offer', 'Suggested Post', 'Featured For You', 'A Video You May Like'];
    $(document).on('scroll', function(){
        $('span').each(function(){
            if($.inArray($(this).text(), upyours) !== -1){
                alert('Testing on mobile browser as of now');
                $(this).parents().eq(4).hide();
                console.log('Got another one | Up yours fb');
            }
        });
    });
});