Clean Feed

Removes all shared content from Facebook.

ما هو Clean Feed؟

Clean Feed هو إضافة Chrome تم تطويرها بواسطة Tyler Aldrich، والميزة الرئيسية لها هي "Removes all shared content from Facebook.".

تحميل ملف CRX للإضافة Clean Feed

قم بتنزيل ملفات الامتداد Clean Feed بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Clean Feed Clean Feed
ID acjebhjdfoagigikeopkaadohklkklhl
عنوان URL الرسمي https://chrome.google.com/webstore/detail/clean-feed/acjebhjdfoagigikeopkaadohklkklhl
الوصف Removes all shared content from Facebook.
حجم الملف 35.96 KB
عدد التثبيتات 21
النسخة الحالية 1.0.1
آخر تحديث 2016-08-08
تاريخ النشر 2016-08-08
تقييم 1.00/5 مجموع تقييمات 1
المطور Tyler Aldrich
نوع الدفع free
اللغات المدعومة 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
}