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是由matija.marohnic開發的Chrome擴展程式,該擴展的主要功能是“Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.”。

下載Facebook Feed Limiter擴展crx文件

下載Facebook Feed Limiter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
說明頁面URL 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\/"
    ]
}