Facebook Feed Limiter

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

O que é Facebook Feed Limiter?

Facebook Feed Limiter é uma extensão do Chrome desenvolvida por matija.marohnic, e sua principal característica é "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.".

Baixar o arquivo CRX da Extensão Facebook Feed Limiter

Baixe arquivos de extensão Facebook Feed Limiter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Facebook Feed Limiter Facebook Feed Limiter
ID ojjjmcajplpdmodbfdbehknejjdafnem
URL Oficial https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem
Descrição Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
Tamanho do Arquivo 4.85 KB
Contagem de Instalações 29
Versão Atual 0.0.2
Última Atualização 2016-04-24
Data de Publicação 2016-04-24
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor matija.marohnic
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/silvenon/fb-feed-limiter
URL da Página de Ajuda https://github.com/silvenon/fb-feed-limiter
Idiomas Suportados 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\/"
    ]
}