Facebook Feed Limiter

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

¿Qué es Facebook Feed Limiter?

Facebook Feed Limiter es una extensión de Chrome desarrollada por matija.marohnic, y su función principal es "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.".

Descargar Archivo CRX de la Extensión Facebook Feed Limiter

Descarga archivos de extensión Facebook Feed Limiter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Facebook Feed Limiter Facebook Feed Limiter
ID ojjjmcajplpdmodbfdbehknejjdafnem
URL Oficial https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem
Descripción Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
Tamaño del Archivo 4.85 KB
Cantidad de Instalaciones 29
Versión Actual 0.0.2
Última Actualización 2016-04-24
Fecha de Publicación 2016-04-24
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador matija.marohnic
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/silvenon/fb-feed-limiter
URL de la Página de Ayuda https://github.com/silvenon/fb-feed-limiter
Idiomas Soportados 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\/"
    ]
}