Silent Facebook

This makes Facebook a peaceful place to live by removing distractions. In particular, it disables the feed on the main page and links to marketplace, videos and gaming. Easy to adjust (e.g. to reenable some of the features).

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

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

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

/* ==UserStyle==
@name           Silent Facebook
@namespace      github.com/openstyles/stylus
@version        1.0.4
@description    This makes Facebook a peaceful place to live by removing distractions. In particular, it disables the feed on the main page and links to marketplace, videos and gaming. Easy to adjust (e.g. to reenable some of the features).
@author         Piotr Suwara
==/UserStyle== */
@-moz-document domain("facebook.com") {
    /* Disables news feed on the main page */
    div[data-pagelet="FeedUnit_0"],
    div[data-pagelet="FeedUnit_0"] ~ div,
    
    /* Disables ads on the main page */
    a[aria-label="Advertiser"],
    a[aria-label="Advertiser"] ~ div,
    
    /* If uncommented, disables news feed on the main page */
    /*div[data-pagelet="GroupsFeed_0"],
    div[data-pagelet="GroupsFeed_0"] ~ div,*/
    
    /* Disables stories on the main page */
    div[aria-label="Stories"],
    
    /* Disables video chat on the main page */
    div[data-pagelet^="VideoChatHomeUnit"],
    
    /* Disables FB Watch (which sometimes adds the number of notifications to the label)... */
    a[aria-label^="Watch"],
    
    /* One may disable FB Watch completely by uncommenting these: */
    /*div[aria-label="Shortcuts within Facebook Watch"],
    div[aria-label="Videos on Facebook Watch"],*/
    
    /* Disables Games link */
    a[aria-label="Gaming"],
    
    /* One may disable Gaming completely by uncommenting this: */
    /*div[aria-label="Gaming"],*/
    
    /* Disables Marketplace link */
    a[aria-label="Marketplace"]
    
    /* One may disable Marketplace completely by uncommenting these: */
    /*div[aria-label="Collection of Marketplace items"],
    div[aria-label="Marketplace sidebar"]*/
    {
        display: none;
    }
}