Facebook Feed Limiter
Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
Facebook Feed Limiter là gì?
Facebook Feed Limiter là một tiện ích mở rộng Chrome được phát triển bởi matija.marohnic, và tính năng chính của nó là "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.".
Tải xuống tệp CRX của tiện ích mở rộng Facebook Feed Limiter
Tải xuống các tệp mở rộng Facebook Feed Limiter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ojjjmcajplpdmodbfdbehknejjdafnem |
URL Chính Thức | https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem |
Mô tả | Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted. |
Kích Thước Tệp | 4.85 KB |
Số Lần Cài Đặt | 29 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2016-04-24 |
Ngày Phát Hành | 2016-04-24 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | matija.marohnic |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/silvenon/fb-feed-limiter |
URL Trang Trợ Giúp | https://github.com/silvenon/fb-feed-limiter |
Ngôn Ngữ Được Hỗ Trợ | 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\/" ] } |