Facebook Feed Limiter

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

What is Facebook Feed Limiter?

Facebook Feed Limiter is a Chrome extension developed by matija.marohnic, and its main feature is "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.".

Download Facebook Feed Limiter Extension CRX File

Download Facebook Feed Limiter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Facebook Feed Limiter Facebook Feed Limiter
ID ojjjmcajplpdmodbfdbehknejjdafnem
Official URL https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem
Description Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
File Size 4.85 KB
Installation Count 29
Current Version 0.0.2
Last Updated 2016-04-24
Publish Date 2016-04-24
Rating 5.00/5 Total 1 Ratings
Developer matija.marohnic
Email [email protected]
Payment Type free
Extension Website https://github.com/silvenon/fb-feed-limiter
Help Page URL https://github.com/silvenon/fb-feed-limiter
Supported Languages 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\/"
    ]
}