Facebook Feed Limiter

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

Cos'è Facebook Feed Limiter?

Facebook Feed Limiter è un'estensione di Chrome sviluppata da matija.marohnic, e la sua funzione principale è "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.".

Scarica il file CRX dell'estensione Facebook Feed Limiter

Scarica i file di estensione Facebook Feed Limiter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Facebook Feed Limiter Facebook Feed Limiter
ID ojjjmcajplpdmodbfdbehknejjdafnem
URL Ufficiale https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem
Descrizione Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
Dimensione del File 4.85 KB
Conteggio Installazioni 29
Versione Corrente 0.0.2
Ultimo Aggiornamento 2016-04-24
Data di Pubblicazione 2016-04-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore matija.marohnic
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/silvenon/fb-feed-limiter
URL della Pagina di Aiuto https://github.com/silvenon/fb-feed-limiter
Lingue Supportate 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\/"
    ]
}