Newsfeed Filter

Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!

Newsfeed Filter란 무엇입니까?

Newsfeed Filter은(는) the man-ager에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Newsfeed Filter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        I know, fb's clever algorithms can make educated guesses to promote content in your newsfeed, that you like even more than your friend's posts. But you still open fb to see your friend's posts, not ads.

Isn't it a shame to waste any amount of time, trying to discern original from promoted content? Wouldn't you like a more distractless environment?

Add Newsfeed Filter and watch all distractions gone - or just the ones you don't like

NOTE: The only data this extension stores are your choices regarding its options. They are stored on a browser related database and I have no access on them. No data from your actual facebook content are stored or sent anywhere.                    

확장 프로그램 기본 정보

이름 Newsfeed Filter Newsfeed Filter
ID ncacdnoibkciekbplckcblpnaefacpfm
공식 URL https://chromewebstore.google.com/detail/newsfeed-filter/ncacdnoibkciekbplckcblpnaefacpfm
설명 Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!
파일 크기 62.81 KB
설치 횟수 35
현재 버전 3.5.4
최근 업데이트 2018-10-10
출시 날짜 2018-10-10
평점 4.00/5 총 4 개의 평점
개발자 the man-ager
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Newsfeed Filter",
    "short_name": "Newsfilter",
    "description": "Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!",
    "version": "3.5.4",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "worker.js"
            ],
            "run_at": "document_end"
        }
    ]
}