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.
扩展基本信息
名称 | |
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 |
帮助页面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\/" ] } |