Clean Feed

Removes all shared content from Facebook.

Vad är Clean Feed?

Clean Feed är en Chrome-tillägg utvecklad av Tyler Aldrich, och dess huvudfunktion är "Removes all shared content from Facebook.".

Ladda ner Clean Feed-förlängningens CRX-fil

Ladda ner Clean Feed-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Clean Feed Clean Feed
ID acjebhjdfoagigikeopkaadohklkklhl
Officiell webbadress https://chrome.google.com/webstore/detail/clean-feed/acjebhjdfoagigikeopkaadohklkklhl
Beskrivning Removes all shared content from Facebook.
Filstorlek 35.96 KB
Antal Installationer 21
Aktuell Version 1.0.1
Senast Uppdaterad 2016-08-08
Publiceringsdatum 2016-08-08
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Tyler Aldrich
Betalningssätt free
Stödda Språk 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
}