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文件

下载Newsfeed Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}