Clean Feed

Removes all shared content from Facebook.

Co to jest Clean Feed?

Clean Feed to rozszerzenie Chrome opracowane przez Tyler Aldrich, a jego główną funkcją jest „Removes all shared content from Facebook.”.

Pobierz plik CRX rozszerzenia Clean Feed

Pobierz pliki rozszerzeń Clean Feed w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Clean Feed Clean Feed
ID acjebhjdfoagigikeopkaadohklkklhl
Oficjalny URL https://chrome.google.com/webstore/detail/clean-feed/acjebhjdfoagigikeopkaadohklkklhl
Opis Removes all shared content from Facebook.
Rozmiar pliku 35.96 KB
Liczba instalacji 21
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2016-08-08
Data Publikacji 2016-08-08
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper Tyler Aldrich
Typ Płatności free
Obsługiwane Języki 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
}