Clean Feed

Removes all shared content from Facebook.

Apa itu Clean Feed?

Clean Feed adalah ekstensi Chrome yang dikembangkan oleh Tyler Aldrich, dan fitur utamanya adalah "Removes all shared content from Facebook.".

Unduh Berkas CRX Ekstensi Clean Feed

Unduh file ekstensi Clean Feed dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Clean Feed Clean Feed
ID acjebhjdfoagigikeopkaadohklkklhl
URL Resmi https://chrome.google.com/webstore/detail/clean-feed/acjebhjdfoagigikeopkaadohklkklhl
Deskripsi Removes all shared content from Facebook.
Ukuran File 35.96 KB
Jumlah Instalasi 21
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2016-08-08
Tanggal Publikasi 2016-08-08
Penilaian 1.00/5 Total 1 Penilaian
Pengembang Tyler Aldrich
Tipe Pembayaran free
Bahasa yang Didukung 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
}