Clean Feed

Removes all shared content from Facebook.

O que é Clean Feed?

Clean Feed é uma extensão do Chrome desenvolvida por Tyler Aldrich, e sua principal característica é "Removes all shared content from Facebook.".

Baixar o arquivo CRX da Extensão Clean Feed

Baixe arquivos de extensão Clean Feed 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

                        This is a small chrome extension that every second will hide any post on Facebook that contains the word "shared." This is purposely overly aggressive, because 1. I'm lazy, and 2. I really don't care what most people say on Facebook anyways. Code for this can be found here, so you know I'm not doing anything malicious and I'm only doing something incredibly stupid: https://github.com/TylerAldrich/CleanFeed                    

Informações Básicas da Extensão

Nome Clean Feed Clean Feed
ID acjebhjdfoagigikeopkaadohklkklhl
URL Oficial https://chrome.google.com/webstore/detail/clean-feed/acjebhjdfoagigikeopkaadohklkklhl
Descrição Removes all shared content from Facebook.
Tamanho do Arquivo 35.96 KB
Contagem de Instalações 21
Versão Atual 1.0.1
Última Atualização 2016-08-08
Data de Publicação 2016-08-08
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor Tyler Aldrich
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clean Feed",
    "description": "Removes all shared content from Facebook.",
    "version": "1.0.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.facebook.com\/*",
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "remove_shared.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        ""
    ],
    "manifest_version": 2
}