Facebook Feed Limiter

Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.

Facebook Feed Limiterとは何ですか?

Facebook Feed Limiterはmatija.marohnicによって開発されたChromeの拡張機能で、その主な機能は「Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.」です。

Facebook Feed Limiter拡張機能のCRXファイルをダウンロード

Facebook Feed Limiter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Have you ever lost 4 hours scrolling through your Facebook news feed? There's a reason they call it infinite scroll.

his magnificent Chrome extension limits it to 10 items, which is something you secretly always wanted. This only limits the news feed, not the feed of a specific profile or a custom feed.

This extension consists of 5 lines of CSS based on the current markup on Facebook, which will occasionally change, but I'll do my best to catch up with the changes.                    

拡張機能の基本情報

名前 Facebook Feed Limiter Facebook Feed Limiter
ID ojjjmcajplpdmodbfdbehknejjdafnem
公式URL https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem
説明 Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
ファイルサイズ 4.85 KB
インストール数 29
現在のバージョン 0.0.2
最終更新日 2016-04-24
公開日 2016-04-24
評価 5.00/5 合計 1 レビュー
開発者 matija.marohnic
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/silvenon/fb-feed-limiter
ヘルプページのURL https://github.com/silvenon/fb-feed-limiter
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Facebook Feed Limiter",
    "description": "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.",
    "version": "0.0.2",
    "page_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "css": [
                "limiter.css"
            ],
            "js": []
        }
    ],
    "permissions": [
        "http:\/\/*.facebook.com\/",
        "https:\/\/*.facebook.com\/"
    ]
}