Facebook Feed Limiter

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

Qu'est-ce que Facebook Feed Limiter ?

Facebook Feed Limiter est une extension Chrome développée par matija.marohnic, et sa fonction principale est "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.".

Télécharger le fichier CRX de l'extension Facebook Feed Limiter

Téléchargez les fichiers d'extension Facebook Feed Limiter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Facebook Feed Limiter Facebook Feed Limiter
ID ojjjmcajplpdmodbfdbehknejjdafnem
URL Officiel 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.
Taille du Fichier 4.85 KB
Nombre d'Installations 29
Version Actuelle 0.0.2
Dernière Mise à Jour 2016-04-24
Date de Publication 2016-04-24
Évaluation 5.00/5 Total 1 Évaluations
Développeur matija.marohnic
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/silvenon/fb-feed-limiter
URL de la Page d'Aide https://github.com/silvenon/fb-feed-limiter
Langues Prises en Charge 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\/"
    ]
}