Facebook Feed Limiter

Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.

ما هو Facebook Feed Limiter؟

Facebook Feed Limiter هو إضافة Chrome تم تطويرها بواسطة matija.marohnic، والميزة الرئيسية لها هي "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.".

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

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

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

                        Have you ever lost 4 hours scrolling through your Facebook news feed? There's a reason they call it infinite scroll.

his magnificent Chrome extension limits it to 10 items, which is something you secretly always wanted. This only limits the news feed, not the feed of a specific profile or a custom feed.

This extension consists of 5 lines of CSS based on the current markup on Facebook, which will occasionally change, but I'll do my best to catch up with the changes.                    

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

الاسم Facebook Feed Limiter Facebook Feed Limiter
ID ojjjmcajplpdmodbfdbehknejjdafnem
عنوان URL الرسمي https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem
الوصف Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
حجم الملف 4.85 KB
عدد التثبيتات 29
النسخة الحالية 0.0.2
آخر تحديث 2016-04-24
تاريخ النشر 2016-04-24
تقييم 5.00/5 مجموع تقييمات 1
المطور matija.marohnic
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/silvenon/fb-feed-limiter
عنوان صفحة المساعدة https://github.com/silvenon/fb-feed-limiter
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Facebook Feed Limiter",
    "description": "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.",
    "version": "0.0.2",
    "page_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "css": [
                "limiter.css"
            ],
            "js": []
        }
    ],
    "permissions": [
        "http:\/\/*.facebook.com\/",
        "https:\/\/*.facebook.com\/"
    ]
}