Clean Feed

Removes all shared content from Facebook.

Wat is Clean Feed?

Clean Feed is een Chrome-extensie ontwikkeld door Tyler Aldrich, en de belangrijkste functie is "Removes all shared content from Facebook.".

Download het CRX-bestand van de extensie Clean Feed

Download Clean Feed-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Clean Feed Clean Feed
ID acjebhjdfoagigikeopkaadohklkklhl
Officiële URL https://chrome.google.com/webstore/detail/clean-feed/acjebhjdfoagigikeopkaadohklkklhl
Beschrijving Removes all shared content from Facebook.
Bestandsgrootte 35.96 KB
Aantal Installaties 21
Huidige Versie 1.0.1
Laatst Bijgewerkt 2016-08-08
Publicatiedatum 2016-08-08
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Tyler Aldrich
Betalingswijze free
Ondersteunde Talen 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
}