Clean Feed

Removes all shared content from Facebook.

Cos'è Clean Feed?

Clean Feed è un'estensione di Chrome sviluppata da Tyler Aldrich, e la sua funzione principale è "Removes all shared content from Facebook.".

Scarica il file CRX dell'estensione Clean Feed

Scarica i file di estensione Clean Feed 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

                        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                    

Informazioni di Base sull'Estensione

Nome Clean Feed Clean Feed
ID acjebhjdfoagigikeopkaadohklkklhl
URL Ufficiale https://chrome.google.com/webstore/detail/clean-feed/acjebhjdfoagigikeopkaadohklkklhl
Descrizione Removes all shared content from Facebook.
Dimensione del File 35.96 KB
Conteggio Installazioni 21
Versione Corrente 1.0.1
Ultimo Aggiornamento 2016-08-08
Data di Pubblicazione 2016-08-08
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore Tyler Aldrich
Tipo di Pagamento free
Lingue Supportate 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
}