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
Eメール [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"
        }
    ]
}